静态路由配置格式是什么?

静态路由配置格式在redhat环境下,有三种配置方法:

方法一:在/etc/sysconfig/network配置文件中配置:

default via 192.168.3.1 dev eth0 #192.168.3.1为eth0网卡的网关地址

10.211.6.0/24 via 192.168.3.1 dev eth0

10.0.0.0/8 via 10.212.52.1 dev eth1 #10.212.52.1为eth1网卡的网关地址

注:该种配置写法同样支持写到/etc/sysconfig/network-scripts/route-interferface 配置文件中。

具体可以参看redhat官方文档。

方法二:在/etc/sysconfig/network-scripts/route-interferface 配置文件配置

在这里支持两种配置格式的写法

A:方法1中提到的方法

cat /etc/sysconfig/network-scripts/route-eth0

0.0.0.0/0 via 192.168.3.1 dev eth0

10.211.6.0/24 via 192.168.3.1 dev eth0

cat /etc/sysconfig/network-scripts/route-eth1

10.0.0.0/8 via 10.212.52.1 dev eth1

B:网络掩码法

cat /etc/sysconfig/network-scripts/route-eth0

ADDRESS0=0.0.0.0

NETMASK0=0.0.0.0

GATEWAY0=192.168.3.1

ADDRESS1=10.211.6.0

NETMASK1=255.255.255.0

GATEWAY1=192.168.3.1

其中网段地址和掩码全是0代表为所有网段,即默认路由。

cat /etc/sysconfig/network-scripts/route-eth1

ADDRESS0=10.0.0.0

NETMASK0=255.0.0.0

GATEWAY0=10.212.52.1

网络掩码法也可以参看redhat官方文档。

方法三:/etc/sysconfig/static-routes配置

cat /etc/sysconfig/static-route

any net any gw 192.168.3.1

any net 10.211.6.0/24 gw 192.168.3.1

any net 10.0.0.0 netmask 255.0.0.0 gw 10.212.52.1

注:默认情况下主机中并没有该文件,之所以该方法也可以是因为/etc/init.d/network启动脚本会调用该文件,具体调用部分代码如下:

Add non interface-specific static-routes.

if [ -f /etc/sysconfig/static-routes ]; then

grep "^any" /etc/sysconfig/static-routes | while read ignore args ; do

/sbin/route add -$args

done

fi

三、suse静态路由配置

扩展资料:

配置静态路由的命令的格式为:

router(config)# ip route network [mask] {address | interface} [distance] [permanent]

其中各参数含义如下:

network:目标网络的网络ID。

mask:目标网络的子网掩码。

address:到达目标网络经过的下一跳路由器的入口IP地址。

interface:到达目标网络的必经的本地路由器的出口的接口名称。

distance:管理开销,不需要改变默认管理开销时,使用该参数进行修改。

permanent:永久有效。如果配置了该选项,即使该接口被关闭,这条静态路由也不会被删除。

参考资料:

百度百科-静态路由