当前位置:Linux教程 - Linux文化 - 怎样在Redhat AS 3 中增加一条永久性路由

怎样在Redhat AS 3 中增加一条永久性路由


>>> 此贴的回复 >> 修改配置文件

>>> 此贴的回复 >> fedora linux/RHEL 的話,有兩個方式可以設定,像是:

CODE:[Copy to clipboard]設定方式 1 (使用 ip route add 敘述語法)

於 /etc/sysconfig/network-scripts/route-eth0 檔案加入

192.168.2.0/24 via 192.168.1.253

CODE:[Copy to clipboard]設定方式 2 ( 使用變數方式,然後最後呼叫 ip route add 語法)

於 /etc/sysconfig/network-scripts/route-eth0 檔案加入

ADDRESS0=192.168.1.0 NETMASK0=255.255.255.0 GATEWAY0=192.168.1.254

>>> 此贴的回复 >> 简单莫过于将“route add -net 10.0.0.0/8 gw 10.1.1.1 ”放入以下文件中: /etc/rc.local