Ifconfig 三大指令與CISCO指令的對應
Ifconfig -a
|
至關於show ip int brief
|
Ifconfig int up/down |
至關於no shutdown |
Ifconfig int address netmask … ifconfig lo 127.0.0.1 |
至關於ip address … |
ifconfig 配地址,注意掩碼要有關鍵字netmask
[root@nm socket]# /sbin/ifconfig eth0:3 192.168.32.8 netmask 255.255.255.0
|
[root@nm socket]# /sbin/ifconfig -a eth0 Link encap:Ethernet HWaddr 00:0C:29:35:74:A1 inet addr:10.4.3.117 Bcast:10.4.255.255 Mask:255.255.0.0 |
一個ifconfig … up的實際應用例子
netstat -nr 看不見接口qfe1的路由,推測多是接口沒打開 |
ifconfig -a 確實沒看到接口
|
ifconfig -qfe1 up (至關於 no shutdown) |
netstat -nr 能夠看見接口qfe1的路由 |
ifconfig le0 up/down和ifconfig le0 plumb/unplumb的區別
$ifconfig le0 up/down 配置網絡接口狀態
$ifconfig le0 plumb/unplumb 配置網卡起用/停用
爲某個接口配多個IP地址---用虛擬接口的方式(實際至關於路由器的secondary地址)
ifconfig eth0 210.34.6.89 netmask 255.255.255.128 broadcast 210.34.6.127
ifconfig
eth0:0 210.34.6.88 netmask 255.255.255.128 broadcast 210.34.6.127
接口不論UP,DOWN,在本地都能PING通
- 無論是直接就沒起來(ONBOOT=NO)
- 仍是沒接網線
- 仍是接口ifconfig eth0 down
上面三種狀況都能PING通eth0 的地址
接口不論UP,DOWN,ifconfig 都看不出區別來
PC有兩塊網卡(eth0,eth1)
把eth0 進行ifconfig eth0 down
居然還能從外邊PING通eth0(10.4.3.135)
其實外邊是從eth1 ping進來的。eth0甚至沒連網線。
真要把接口DOWN掉,仍是建議用ONBOOT=NO,而後/etc/init.d/network restart
route add ,注意關鍵字-net和 netmask
[root@osms guan]# /sbin/route add
-net 192.168.1.0
netmask 255.255.255.0 gw 10.4.1.105
route add 的dev關鍵字和gw關鍵字
route add -net 192.56.76.0 netmask 255.255.255.0 dev eth0
|
route add -net 192.56.76.0 netmask 255.255.255.0 gw 192.56.76.123
|
route del –net 刪除路由
route add -net 10.1.1.0 netmask 255.255.255.0 reject 拒絕路由(起過濾的做用)
solaris 下的route add -net
加靜態路由
route add -net ... -netmask ... ... route add -net 182.1.1.0 -netmask 255.255.255.0 10.1.0.10 注意,無gw參數
|
加缺省網關
route add -net default ... route add -net default 134.2.250.254 1 (1的意思是1跳)
|
route add只是臨時指令,怎麼變成穩固指令?
- 用gated.conf ,但gated是一個專門的軟件,不必定安裝了.
- 用開機啓動script:
在etc/rc3.d/中生成一個開機自起script
加入一行route add …
more /etc/rc3.d/S99ROUTE … route add -net 182.1.1.0 -netmask 255.255.255.0 10.1.0.10
|
固然也能夠加到rc.local中
經過看log(/var/log/message)有可能看到網口的link up/down #tail -f /var/log/messages Oct 22 07:31:06 FW kernel: eth1: link down Oct 22 07:31:11 FW kernel: eth1: link up, 100Mbps, full-duplex, lpa 0x45E1 Oct 22 07:47:53 FW kernel: eth1: link down Oct 22 07:47:58 FW kernel: eth1: link up, 100Mbps, full-duplex, lpa 0x45E1 Oct 22 07:49:27 FW kernel: eth1: link down Oct 22 07:49:29 FW kernel: eth1: link up, 100Mbps, full-duplex, lpa 0x45E1 Oct 22 11:15:59 FW sshd(pam_unix)[3306]: session opened for user root by root(uid=0)