添加路由条目(永久)

方法1:echo "192.168.1.0/24 via 172.17.100.1" > /etc/sysconfig/network-scripts/route-eth0

[[email protected] ~]# echo "192.168.1.0/24 via 172.17.100.1" > /etc/sysconfig/network-scripts/route-eth0
[[email protected] ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.1.0     172.17.100.1    255.255.255.0   UG    0      0        0 eth0
172.17.100.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     1002   0        0 eth0
0.0.0.0         172.17.100.1    0.0.0.0         UG    0      0        0 eth0
[[email protected] ~]#

方法2:

[[email protected] ~]# echo -e "ADDRESS0=192.168.1.0\nNETMASK0=255.255.255.0\nGATEWAY0=172.17.100.1" > /etc/sysconfig/network-scripts/route-eth0
[[email protected] ~]# cat /etc/sysconfig/network-scripts/route-eth0
ADDRESS0=192.168.1.0
NETMASK0=255.255.255.0
GATEWAY0=172.17.100.1
[[email protected] ~]# /etc/init.d/network restart
Shutting down interface eth0:                              [  OK  ]
Shutting down loopback interface:                          [  OK  ]
Bringing up loopback interface:                            [  OK  ]
Bringing up interface eth0:  Determining if ip address 172.17.100.240 is already in use for device eth0...
                                                           [  OK  ]
[[email protected] ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.1.0     172.17.100.1    255.255.255.0   UG    0      0        0 eth0
172.17.100.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     1002   0        0 eth0
0.0.0.0         172.17.100.1    0.0.0.0         UG    0      0        0 eth0
[[email protected] ~]#
时间: 2024-10-20 02:54:17

添加路由条目(永久)的相关文章

三路由器通过添加静态路由条目实现全网互通

第一步:分别先配置客户端和路由器的ipR1路由器的配置<Huawei>system-view [Huawei-GigabitEthernet0/0/0]ip address 192.168.1.254 255.255.255.0[Huawei-GigabitEthernet0/0/0]undo shutdown[Huawei-GigabitEthernet0/0/1]ip address 192.168.2.1 255.255.255.0[Huawei-GigabitEthernet0/0/1

Juniper-R&S-BGP(2):IBGP的初始配置+宣告BGP路由条目

1.进入Routing-options 指定AS号码 命令: set routing-options autonomous-system xxxxx  ---注明:BGP私有AS号64512-65535 2.进入BGP协议的层级,手工配置邻居 root# edit protocols bgp group ibgp--- 进入BGP协议的层级 [edit protocols bgp group ibgp] root# set type internal --- 指定该组的邻居与我都是IBGP邻居关

路由的基本认识与相关静态路由条目的配置与操作

路由   -定义      不同网段的主机进行通信,就是路由:      (相同网段的主机通信,就是交换)   -实现       通过路由器实现"路由"转发动作:   -互通前提       # PC 必须配置"网关":       # 路由器的"路由表"必须得有"路由条目"     路由器    -特点       每个端口都是属于不同的网段,所以是可以分割广播域    -核心工作表        路由表     -工作对

实施现场实用 添加路由

在实际运用中,我们经常会遇到笔记本要同时访问外网和局域网的情况.一般情况下是笔记本连WiFi,然后接一根网线连到局域网交换机(前提),这时我们会遇到的问题是笔记本连了WiFi之后就不能访问局域网了,禁用WiFi则可以访问局域网,要实现同时访问外网和局域网,我们可以给笔记本增加路由操作,具体操作如下: 常规用例语句: 添加路由:route -p add 10.10.10.0 mask 255.255.255.0 172.20.153.254 打印路由:route peint 10.* 删除路由:r

谈谈构建路由表当中第一个动态路由条目---路由信息协议RIP

动态路由协议介绍 我们可以把动态路由协议理解为一个自动化的概念 动态路由协议能够释放管理员对设备管理压力,使能动态路由协议之后 网络设备之间能够相互的发送路由和接收对应路由 什么是距离矢量算法 Distance-Vector 距离矢量是依照传闻方式进行rip协议是一个典型的距离矢量路由协议 后面需要学习的BGP协议是一个增强DV协议R1是依靠R2来学习路由条目的 R2这边说什么 R1就会接收什么 这种不怎么可靠 RIP协议原理介绍 RIP是一种比较简单的内部网关协议(IGP协议) RIP基于距离

linux 添加路由

查看路由 route -n 2.添加路由 route add -net 192.168.30.0/24 dev eth0  基于网卡添加 route add -net 192.168.40.0/24 gw 192.168.50.1 基于网关添加 route add -host 192.168.40.2 gw 192.168.50.1  基于主机添加 3.删除路由 route del -net 192.168.30.0/24 dev eth0 route del 192.168.40.2 gw 1

#[Composer学习笔记]Part2:添加路由

在Part1的基础上,为项目添加路由: 增加路由扩展:这里选择macaw,在composer中的扩展包为: codingbean/macaw 编辑composer.json文件: {   "require": {     "codingbean/macaw": "dev-master"     } } 保存,并执行: composer.phar update 这时,vendor下就多了 codingbean 文件夹 编辑路由规则 创建config

CCNP实验七:修改OSPF特定路由条目的管理距离

一:基本配置 r1(config)#router ospf 1 r1(config-router)#net 1.1.0.0 0.0.255.255 area 1 r1(config-router)#net 12.1.1.1 0.0.0.0 area 0 r1(config-router)#redistribute connected subnets r2(config)#router ospf 1 r2(config-router)#net 12.1.1.2 0.0.0.0 area 0 r2(

Camel添加路由过程

Camel添加路由一般情况下是调用CamelContext的addRoutes(RoutesBuilder builder)方法实现的,下面我们看看该方法是如何实现路由的添加的: public void addRoutes(RoutesBuilder builder) throws Exception { //调用RouteBuilder的addRoutesToCamelContext方法,并将CamelContext作为参数传递进去 builder.addRoutesToCamelContex