LINUX 静态路由和动态路由简单应用(zebra)
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-01
、RPM包安装 # rpm -ivh zebra-0.93a-3.i386.rpm Router1: 1、 2、zebra路由配置[静态路由、RIPv2、OSPF任选其一即可] 1> 添加telnet初始密码 # vi /etc/zebra/zebra.conf hostname Router1 password 123456 enable password 123456 # telnet 127.0.0.1 2601 password: localhost>enable localhost#conf t localhost(config)#hostname Router1 Router1(config)#password zebra //修改telnet访问密码 Router1(config)#enable password secret //修改进入特权模式密码 Router1(config)#service password-encryption //加密配置文件中的密码 Router1(config)#interface eth0 Router1(config-if)#ip address 192.168.3.1/24 //修改IP地址,仅为保存配置使用,否则可省略 Router1(config-if)#no shut Router1(config-if)#exit Router1(config)#interface eth1 Router1(config-if)#ip address 192.168.2.1/24 Router1(config-if)#no shut Router1(config-if)#end Router1#exit 3> 静态路由配置 # telnet 127.0.0.1 2601 password: Router1>enable Router1#conf t 拥有帝国一切,皆有可能。欢迎访问phome.net Router1(config)#ip route 192.168.3.0/24 192.168.2.1 Router1(config)#end Router1#exit 4> RIP v2配置 # telnet 127.0.0.1 2602 password: Router1>enable Router1#conf t Router1(config)#router rip Router1(config-router)#version 2 Router1(config-router)#network 192.168.3.0/24 Router1(config-router)#network 192.168.2.0/24 Router1(config-router)#network 192.168.1.0/24 Router1(config-router)#end Router1#exit 5> OSPF配置 # telnet 127.0.0.1 2604 password: Router1>enable Router1#conf t Router1(config)#router ospf Router1(config-router)#network 192.168.1.0/24 area 0 Router1(config-router)#network 192.168.2.0/24 area 0 Router1(config-router)#network 192.168.3.0/24 area 0 Router1(config-router)#end Router1#exit 3、保存配置信息 # telnet 127.0.0.1 2601 password: Router1>enable Router1#copy run start Configuration saved to /etc/zebra/zebra.conf Router1#exit 本文出自 “SHADOW-IT” 博客,请务必保留此出处http://shadowlove.blog.51cto.com/988802/424810 拥有帝国一切,皆有可能。欢迎访问phome.net |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: linux xrdp 键盘混乱修复下一篇: linux 每日学一点《 vi 指令大全》
关于LINUX 静态路由和动态路由简单应用(zebra)的所有评论