您好,登錄后才能下訂單哦!
添加子接口
ifconfig eth0:0 10.59.0.23 netmask 255.255.255.0
靜態(tài)路由
方法一:
添加路由
route add -net 192.168.0.0/24 gw 192.168.0.1
route add -host 192.168.1.1 dev 192.168.0.1
刪除路由
route del -net 192.168.0.0/24 gw 192.168.0.1
add 增加路由
del 刪除路由
-net 設(shè)置到某個(gè)網(wǎng)段的路由
-host 設(shè)置到某臺(tái)主機(jī)的路由
gw 出口網(wǎng)關(guān) IP地址
dev 出口網(wǎng)關(guān) 物理設(shè)備名
增加默認(rèn)路由
route add default gw 192.168.0.1
方法二:
添加路由
ip route add 192.168.0.0/24 via 192.168.0.1
ip route add 192.168.1.1 deve 192.168.0.1
刪除路由
ip route del 192.168.0.0、24 via 192.168.0.1
add 增加路由
del 刪除路由
via 網(wǎng)關(guān)出口 IP地址
dev 網(wǎng)關(guān)出口 物理設(shè)備名
增加默認(rèn)路由
ip route add default via 192.168.0.1 dev eth0
via 192.168.0.1 是我的默認(rèn)路由器
在/etc/sysconfig/network-script/目錄下創(chuàng)建名為route- eth0的文件
vi /etc/sysconfig/network-script/route-eth0
在此文件添加如下格式的內(nèi)容
192.168.1.0/24 via 192.168.0.1
重啟網(wǎng)絡(luò)驗(yàn)證
windows添加永久路由
route –p add 172.17.0.0 mask 255.255.0.0 192.168.24.71
修改路由
[root@NewBBS_SQL ~]# ip route
211.157.0.0/25 dev eth2 proto kernel scope link src 211.157.0.37
10.59.0.0/24 via 10.211.0.254 dev eth0
10.211.0.0/24 dev eth0 proto kernel scope link src 10.211.0.37
192.168.28.0/24 dev eth0 proto kernel scope link src 192.168.28.37
169.254.0.0/16 dev eth2 scope link
10.223.0.0/16 via 10.211.0.254 dev eth0
192.168.0.0/16 via 10.211.0.254 dev eth0
default via 211.157.0.60 dev eth2
[root@NewBBS_SQL ~]# ip route change 10.59.0.0/24 via 10.211.0.252 dev eth0
[root@NewBBS_SQL ~]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
211.157.0.0 0.0.0.0 255.255.255.128 U 0 0 0 eth2
10.59.0.0 10.211.0.252 255.255.255.0 UG 0 0 0 eth0
10.211.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.28.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth2
10.223.0.0 10.211.0.254 255.255.0.0 UG 0 0 0 eth0
192.168.0.0 10.211.0.254 255.255.0.0 UG 0 0 0 eth0
0.0.0.0 211.157.0.60 0.0.0.0 UG 0 0 0 eth2
其他機(jī)器通過局域網(wǎng)中某臺(tái)可上網(wǎng)的機(jī)器上網(wǎng)的方法
如192.168.1.37能上網(wǎng)
首先在能上網(wǎng)的192.168.1.37上設(shè)置源地址轉(zhuǎn)換iptables規(guī)則
Chain POSTROUTING (policy ACCEPT)
target prot opt source destination
SNAT all -- 192.168.1.0/24 0.0.0.0/0 to:192.168.1.37
開啟ip_forward
其次,在需要上網(wǎng)的機(jī)器上添加一條默認(rèn)路由,使其網(wǎng)關(guān)為192.168.1.37
ip route add default via 192.168.1.37 dev eth0 metric 50
并讓其開銷比現(xiàn)有的默認(rèn)值小
[root@mgmt-ldap01 network-scripts]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.1.37 0.0.0.0 UG 50 0 0 eth0
0.0.0.0 192.168.1.1 0.0.0.0 UG 100 0 0 eth0
169.254.169.254 192.168.1.254 255.255.255.255 UGH 100 0 0 eth0
192.168.1.0 0.0.0.0 255.255.255.0 U 100 0 0 eth0
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。