2021-05-12 14:32:11
Linux下的IP設定
即時生效:
ifconfig eth0 192.168.1.102 netmask 255.255.255.0
啟動生效:
vim /etc/sysconfig/network-scripts/ifcfg-eth0
加入
IPADDR=192.168.1.102
NETMASK=255.255.255.0
修改default gateway
即時生效:
route add default gw 192.168.1.1
啟動生效:
vim /etc/sysconfig/network-scripts/ifcfg-eth0
加入
GATEWAY=192.168.1.1
最後結果如下:
DEVICE=eth0
BOOTPROTO=static
IPADDR=192.168.1.102
NETMASK=255.255.255.0
GETEWAY=192.168.1.1
ONBOOT=yes
TYPE=Ethernet
註:BOOTPROTO只有在static(靜態)模式下才可以使用設定的IP資訊
修改dns
vim /etc/resolv.conf
修改後可即時生效,啟動同樣有效
形式
加入nameserver= ***.***.***.***
最多可有三個,作為上一個失敗後的候選
修改host name
即時生效:
hostname fc2
啟動生效:
vim /etc/sysconfig/network
形式如下:
NETWORKING=yes
HOSTNAME=rh-linux.fc.org
##########################################################
首先,先了解傳統的網路設定命令:
1. 使用ifconfig命令設定並檢視網路介面情況
範例1: 設定eth0的IP,同時啟用裝置:
ifconfig eth0 192.168.4.1 netmask 255.255.255.0 up
範例2: 設定eth0別名裝置 eth0:1 的IP,並新增路由
ifconfig eth0:1 192.168.4.2
route add –host 192.168.4.2 dev eth0:1
範例3:啟用(禁用)裝置
ifconfig eth0:1 up(down)
範例4:檢視所有(指定)網路介面設定
ifconfig (eth0)
—————————
2. 使用route 命令設定路由表
範例1:新增到主機路由
route add –host 192.168.4.2 dev eth0:1
route add –host 192.168.4.1 gw 192.168.4.250
範例2:新增到網路的路由
route add –net IP netmask MASK eth0
route add –net IP netmask MASK gw IP
route add –net IP/24 eth1
範例3:新增預設閘道器
route add default gw IP
範例4:刪除路由
route del –host 192.168.4.1 dev eth0:1
範例5:檢視路由資訊
route 或 route -n (-n 表示不解析名字,列出速度會比route 快)
—————————
3.ARP 管理命令
範例1:檢視ARP快取
arp
範例2: 新增
arp –s IP MAC
範例3: 刪除
arp –d IP
—————————
4. ip是iproute2軟體包裡面的一個強大的網路設定工具,它能夠替代一些傳統的網路管理工具。例如:ifconfig、route等,
上面的範例完全可以用下面的ip命令實現,而且ip命令可以實現更多的功能.下面介紹一些範例:
4.0 ip命令的語法
ip [OPTIONS] OBJECT [COMMAND [ARGUMENTS]]
4.1 ip link set–改變裝置的屬性. 縮寫:set、s
範例1:up/down 起動/關閉裝置。
ip link set dev eth0 up
這個等於傳統的
ifconfig eth0 up
ifconfig eth0 down
範例2:改變裝置傳輸佇列的長度。
引數:txqueuelen NUMBER或者txqlen NUMBER
ip link set dev eth0 txqueuelen 100
範例3:改變網路裝置MTU(最大傳輸單元)的值。
ip link set dev eth0 mtu 1500
範例4: 修改網路裝置的MAC地址。
引數: address LLADDRESS
ip link set dev eth0 address 00:01:4f:00:15:f1
4.2 ip link show–顯示裝置屬性. 縮寫:show、list、lst、sh、ls、l
-s選項出現兩次或者更多次,ip會輸出更為詳細的錯誤資訊統計。
範例:
ip -s -s link ls eth0
這個命令等於傳統的
ifconfig eth0
—————————
5.1 ip address add–新增一個新的協定地址. 縮寫:add、a
範例1:為每個地址設定一個字串作為標籤。為了和Linux-2.0的網路別名相容,這個字串必須以裝置名開頭,接著一個冒號,
ip addr add local 192.168.4.1/28 brd + label eth0:1 dev eth0
等價於
ifconfig eth0:5 192.168.4.1/28
ip addr add local 192.168.4.1/28 dev eth0
範例2:
在乙太網介面eth0上增加一個地址192.168.20.0,掩碼長度為24位元(155.155.155.0),標準廣播地址,標籤為eth0:Alias:
ip addr add 192.168.4.2/24 brd + dev eth1 label eth1:1
這個命令等於傳統的:
ifconfig eth1:1 192.168.4.2/24
5.2 ip address delete–刪除一個協定地址. 縮寫:delete、del、d
ip addr del 192.168.4.1/24 brd + dev eth0 label eth0:Alias1
5.3 ip address show–顯示協定地址. 縮寫:show、list、lst、sh、ls、l
ip addr ls eth0
5.4.ip address flush–清除協定地址. 縮寫:flush、f
範例1 : 刪除屬於私網10.0.0.0/8的所有地址:
ip -s -s a f to 10/8
範例2 : 取消所有乙太網卡的IP地址
ip -4 addr flush label "eth0″
—————————
6. ip neighbour–neighbour/arp表管理命令
縮寫 neighbour、neighbor、neigh、n
命令 add、change、replace、delete、fulsh、show(或者list)
6.1 ip neighbour add — 新增一個新的鄰接條目
ip neighbour change–修改一個現有的條目
ip neighbour replace–替換一個已有的條目
縮寫:add、a;change、chg;replace、repl
範例1: 在裝置eth0上,為地址10.0.0.3新增一個permanent ARP條目:
ip neigh add 10.0.0.3 lladdr 0:0:0:0:0:1 dev eth0 nud perm
範例2:把狀態改為reachable
ip neigh chg 10.0.0.3 dev eth0 nud reachable
6.2.ip neighbour delete–刪除一個鄰接條目
範例1:刪除裝置eth0上的一個ARP條目10.0.0.3
ip neigh del 10.0.0.3 dev eth0
6.3.ip neighbour show–顯示網路鄰居的資訊. 縮寫:show、list、sh、ls
範例1: ip -s n ls 193.233.7.254
193.233.7.254. dev eth0 lladdr 00:00:0c:76:3f:85 ref 5 used 12/13/20 nud
reachable
6.4.ip neighbour flush–清除鄰接條目. 縮寫:flush、f
範例1: (-s 可以顯示詳細資訊)
ip -s -s n f 193.233.7.254
—————————
7. 路由表管理
7.1.縮寫 route、ro、r
7.5.路由表
從Linux-2.2開始,核心把路由歸納到許多路由表中,這些表都進行了編號,編號數位的範圍是1到255。另外,
為了方便,還可以在/etc/iproute2/rt_tables中為路由表命名。
預設情況下,所有的路由都會被插入到表main(編號254)中。在進行路由查詢時,核心只使用路由表main。
7.6.ip route add — 新增新路由
ip route change — 修改路由
ip route replace — 替換已有的路由
縮寫:add、a;change、chg;replace、repl
範例1: 設定到網路10.0.0/24的路由經過閘道器193.233.7.65
ip route add 10.0.0/24 via 193.233.7.65
範例2: 修改到網路10.0.0/24的直接路由,使其經過裝置dummy
ip route chg 10.0.0/24 dev dummy
範例3:
實現鏈路負載平衡.加入預設多路徑路由,讓ppp0和ppp1分擔負載(注意:scope值並非必需,它只不過是告訴核心,這個路由要經過閘道器而不是直連的。實際上,如果你知道遠端端點的地址,使用via引數來設定就更好了)。
ip route add default scope global nexthop dev ppp0 nexthop dev ppp1
ip route replace default scope global nexthop dev ppp0 nexthop dev ppp1
範例4:
設定NAT路由。在轉發來自192.203.80.144的封包之前,先進行網路地址轉換,把這個地址轉換為193.233.7.83
ip route add nat 192.203.80.142 via 193.233.7.83
範例5: 實現封包級負載平衡,允許把封包隨機從多個路由發出。weight
可以設定權重.
ip route replace default equalize nexthop via 211.139.218.145 dev eth0
weight 1 nexthop via 211.139.218.145 dev eth1 weight 1
7.7.ip route delete– 刪除路由
縮寫:delete、del、d
範例1:刪除上一節命令加入的多路徑路由
ip route del default scope global nexthop dev ppp0 nexthop dev ppp1
7.8.ip route show — 列出路由
縮寫:show、list、sh、ls、l
範例1: 計算使用gated/bgp協定的路由個數
ip route ls proto gated/bgp |wc
1413 9891 79010
範例2:
計算路由快取裡面的條數,由於被快取路由的屬性可能大於一行,以此需要使用-o選項
ip -o route ls cloned |wc
159 2543 18707
範例3: 列出路由表TABLEID裡面的路由。預設設定是table
main。TABLEID或者是一個真正的路由表ID或者是/etc/iproute2/rt_tables檔案定義的字串,
或者是以下的特殊值:
all — 列出所有表的路由;
cache — 列出路由快取的內容。
ip ro ls 193.233.7.82 tab cache
範例4: 列出某個路由表的內容
ip route ls table fddi153
範例5: 列出預設路由表的內容
ip route ls
這個命令等於傳統的: route
7.9.ip route flush — 擦除路由表
範例1: 刪除路由表main中的所有閘道器路由(範例:在路由監控程式掛掉之後):
ip -4 ro flush scope global type unicast
範例2:清除所有被克隆出來的IPv6路由:
ip -6 -s -s ro flush cache
範例3: 在gated程式掛掉之後,清除所有的BGP路由:
ip -s ro f proto gated/bgp
範例4: 清除所有ipv4路由cache
ip route flush cache
*** IPv4 routing cache is flushed.
7.10 ip route get — 獲得單個路由 .縮寫:get、g
使用這個命令可以獲得到達目的地址的一個路由以及它的確切內容。
ip route get命令和ip route show命令執行的操作是不同的。ip route
show命令只是顯示現有的路由,而ip route get命令在必要時會派生出新的路由。
範例1: 搜尋到193.233.7.82的路由
ip route get 193.233.7.82
193.233.7.82 dev eth0 src 193.233.7.65 realms inr.ac cache mtu 1500 rtt
300
範例2:
搜尋目的地址是193.233.7.82,來自193.233.7.82,從eth0裝置到達的路由(這條命令會產生一條非常有意思的路由,這是一條到193.233.7.82的回環路由)
ip r g 193.233.7.82 from 193.233.7.82 iif eth0
193.233.7.82 from 193.233.7.82 dev eth0 src 193.233.7.65 realms
inr.ac/inr.ac
cache
範例1: 通過路由表inr.ruhep路由來自源地址為192.203.80/24的封包
ip ru add from 192.203.80/24 table inr.ruhep prio 220
範例2:把源地址為193.233.7.83的資料包的源地址轉換為192.203.80.144,並通過表1進行路由
ip ru add from 193.233.7.83 nat 192.203.80.144 table 1 prio 320
範例3:刪除無用的預設規則
ip ru del prio 32767
8.7. ip rule show — 列出路由規則
縮寫:show、list、sh、ls、l
範例1:
ip ru ls
0: from all lookup local
32762: from 192.168.4.89 lookup fddi153
32764: from 192.168.4.88 lookup fddi153
32766: from all lookup main
32767: from all lookup 253
—————————
9. ip maddress — 多播地址管理
縮寫:show、list、sh、ls??l
9.3.ip maddress show — 列出多播地址
範例1:
ip maddr ls dummy
9.4. ip maddress add — 加入多播地址
ip maddress delete — 刪除多播地址
縮寫:add、a;delete、del、d
使用這兩個命令,我們可以新增/刪除在網路介面上監聽的鏈路層多播地址。這個命令只能管理鏈路層地址。
範例1: 增加 ip maddr add 33:33:00:00:00:01 dev dummy
範例2: 檢視
ip -O maddr ls dummy
2: dummy
link 33:33:00:00:00:01 users 2 static
link 01:00:5e:00:00:01
範例3: 刪除
ip maddr del 33:33:00:00:00:01 dev dummy
—————————
10.ip mroute — 多播路由快取管理
10.4. ip mroute show — 列出多播路由快取條目
縮寫:show、list、sh、ls、l
範例1:檢視 ip mroute ls
(193.232.127.6, 224.0.1.39) Iif: unresolved
(193.232.244.34, 224.0.1.40) Iif: unresolved
(193.233.7.65, 224.66.66.66) Iif: eth0 Oifs: pimreg
範例2:檢視 ip -s mr ls 224.66/16
(193.233.7.65, 224.66.66.66) Iif: eth0 Oifs: pimreg
9383 packets, 300256 bytes
—————————
11. ip tunnel — 通道設定
縮寫 tunnel、tunl
11.4.ip tunnel add — 新增新的通道
ip tunnel change — 修改現有的通道
ip tunnel delete — 刪除一個通道
縮寫:add、a;change、chg;delete、del、d
範例1:建立一個對等通道,最大TTL是32
ip tunnel add Cisco mode sit remote 192.31.7.104 local 192.203.80.1 ttl 32
11.4.ip tunnel show — 列出現有的通道
縮寫:show、list、sh、ls、l
範例1: ip -s tunl ls Cisco
—————————
12. ip monitor和rtmon — 狀態監視
ip命令可以用於連續地監視裝置、地址和路由的狀態。這個命令選項的格式有點不同,命令選項的名字叫做monitor,接著是操作物件:
ip monitor [ file FILE ] [ all | OBJECT-LIST ]
範例1:
rtmon file /var/log/rtmon.log
範例2:
ip monitor file /var/log/rtmon.log r
本文永久更新連結地址:http://www.linuxidc.com/Linux/2015-12/126485.htm
相關文章