51、linux shell命令,route,ifconfig

weixin_33941350發表於2011-09-29

3、route

1)route [-nee]

route add [-net|-host] [網域或主機] netmask [mask] [gw|dev]

route del [-net|-host] [網域或主機] netmask [mask] [gw|dev]

2)option

-n:不使用協議或主機名稱,直接使用IPport 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:1eth0: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 //設定eth0ip

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】 對tcpstate講解的較好,如TIME_WAITThe socket is waiting after close to handle packets still in the network.

http://linux.die.net/man/8/netstat

3http://www.linuxso.com/command/netstat.html

4traceroute的用法示例

http://blog.sina.com.cn/s/blog_4895289e010009bn.html

對來龍去脈講的好

http://blog.chinaunix.net/space.php?uid=20172731&do=blog&cuid=159630

5ifconfig用法

http://www.cublog.cn/u2/78880/showart_1879201.html

相關文章