3、route
1)route [-nee]
route add [-net|-host] [网域或主机] netmask [mask] [gw|dev]
route del [-net|-host] [网域或主机] netmask [mask] [gw|dev]
2)option
① -n:不使用协议或主机名称,直接使用IP或port number;
② -ee:使用更详细的信息来显示
增加 (add) 与删除 (del) 路由的相关参数:
① -net:表示后面接的路由为一个网域;
② -host:表示后面接的为连接到单部主机的路由;
③ netmask:子网掩码;
④ gw:gateway 的简写;
⑤ dev指定由那一块网卡连线出去,后面接 eth0 等
关于结果中Flags的说明,见【1】。
3) 示例
1)route del -net 169.254.0.0 netmask 255.255.0.0 dev eth0 //路由表中各项要写全
2)route add -net 192.168.100.0 netmask 255.255.255.0 dev eth0
3)route add default gw 192.168.1.250
/etc/init.d/network restart //刚刚的设定全部失效,以ifcfg-ethX 的设定为主
default = 0.0.0.0/0.0.0.0
4、ifconfig,ifup,ifdown
1) 说明
⑥ ifconfig {interface} {up|down}
⑦ ifconfig interface address {options}
可以设置虚拟网络接口:指的是为一个网络接口指定多个IP地址,虚拟接口是这样的 eth0:0 、 eth0:1、eth0:2 ... .. eth1N。比如,我们可以用不同的IP地址来架运行多个httpd服务器。
2)option
interface:网卡号,包括 eth0, eth1, ppp0 等
options::
① up, down:启动 (up) 或关闭 (down) 该网络界面(不涉及任何参数)
② mtu:可以设定不同的 MTU 数值,例如 mtu 1500 (单位为 byte)
③ netmask:子网掩码;
④ broadcast:广播位址
3)示例
ifconfig eth0 192.168.100.100 //设置eth0的ip
ifconfig eth0 192.168.100.100 netmask 255.255.255.128 mtu 8000
ifconfig eth0:0 192.168.50.50 // eth0:0,在该实体网卡上,再模拟一个网络地址,亦即是在一张网络卡上面设定多个 IP
ifconfig eth0:0 down
/etc/init.d/network restart //刚刚的设定全部失效,会以ifcfg-ethX 的设定为主
/etc/sysconfig/network/config
ifconfig eth1:0 192.168.1.250 hw ether 00:11:00:00:11:44 netmask 255.255.255.0 broadcast 192.168.1.255 up //hw后面是网络接口类型,ether表示以太网
4)ifup,ifdown是两个脚本,会直接到 /etc/sysconfig/network-scripts 目录下搜寻对应的设定档,通过其相应的脚本来启动关闭。
ifup | ifdown {interface}
5、ip命令【1】
参考
【1】 对命令进行了一些讲解
http://linux.vbird.org/linux_server/0140networkcommand.php#netstat
【2】 对tcp的state讲解的较好,如TIME_WAIT:The socket is waiting after close to handle packets still in the network.
http://linux.die.net/man/8/netstat
【3】 http://www.linuxso.com/command/netstat.html
【4】 traceroute的用法示例
http://blog.sina.com.cn/s/blog_4895289e010009bn.html
对来龙去脉讲的好
http://blog.chinaunix.net/space.php?uid=20172731&do=blog&cuid=159630
【5】ifconfig用法