科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网网络频道结合实例细化讲解广域网路由基本技术

结合实例细化讲解广域网路由基本技术

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

我们假定读者对IP协议有一定程度的了解(不了解IP协议永远无法维护一个IP网络),比如至少懂得IP地址的结构、类别和子网、子网掩码的概念,并且具有一定的计算机基础知识。

作者:赛迪网 来源:赛迪网 2007年10月2日

关键字:

  • 评论
  • 分享微博
  • 分享邮件

在本页阅读全文(共7页)

具体网络参数分配表如下:

项目

A网

B网

网络号

202.96.199.0

202.97.76.0

子网掩码

255.255.255.0

255.255.255.224

所属域

xxx.com

yyy.com

以太网地址

202.96.199.1

202.97.76.1

互联地址

202.98.0.1

202.98.0.2

专线速率

128kbps

同左

域名服务器

主:202.96.199.2

备:202.96.199.3

同左

首先进入路由器:将你的计算机串行口连接到路由器的Console口,使用Netterm或者超级终端之类的软件登录。

Router>en:

passwd:******(输入超级口令)

全局配置:(A、B网相同)

Router#conf terminal(切换到配置状态)

Router(config)#enable secret my-root-password(定义超级口令)

Router(config)#ip host Router-A(定义路由器名,B网为Router-B)

Router(config)#ip domain-name xxx.com(定义所属域名称,B网为yyy.com)

Router(config)#nameserver 202.96.199.2(定义主域名服务器)

Router(config)#nameserver 202.96.199.3(定义备域名服务器)

Router(config)#ip classless

Router(config)#line vty 0 4

(定义5个telnet虚终端,即可以同时有5个人登录本路由器)

Router(config-line)#password my-telnet-password(定义telnet口令)

Router(config-line)#exit

Router(config)#exit

地址和路由配置:

/****** A网路由器 ******/

Router-A#conf t(切换到配置状态)

Router-A(config)#int e0(配置Ethernet 0口)

Router-A(config-if)#description the LAN port link to my local network(端口说明)

Router-A(config-if)#ip add 202.96.199.1 255.255.255.0

(定义以太网IP地址,子网掩码表示为C类网络)

Router-A(config-if)#no shutdown(激活端口)

Router-A(config-if)#exit

Router-A(config)#int s0(配置Serial 0口)

Router-A(config-if)#description the WAN port link to Router-B(端口说明)

Router-A(config-if)#ip add 202.98.0.1 255.255.255.252(定义互联广域网IP地址)

Router-A(config-if)#bandwidth 128(定义端口速率,单位:kbps)

Router-A(config-if)#no shutdown(激活端口)

Router-A(config-if)#exit

Router-A(config)#ip route 202.97.76.0 255.255.255.224 202.98.0.2

(定义静态路由,通过网关到达对端局域网络,IP为对端广域网IP地址)

Router-A(config)#exit

Router-A#wr m(保存配置)

/****** B网路由器 ******/

Router-B#conf t

Router-B(config)#int e0

Router-B(config-if)#description the LAN port link to my local network(端口说明)

Router-B(config-if)#ip add 202.97.76.1 255.255.255.224

(定义以太网IP地址,子网掩码表示为拥有32个地址的子网)

Router-B(config-if)#no shutdown

Router-B(config-if)#exit

Router-B(config)#int s0

Router-B(config-if)#description the WAN port link to Router-A(端口说明)

Router-B(config-if)#ip add 202.98.0.2 255.255.255.252

Router-B(config-if)#bandwidth 128

Router-B(config-if)#no shutdown

Router-B(config-if)#exit

Router-B(config)#ip route 202.96.199.0 255.255.255.0 202.98.0.1

(定义静态路由,通过网关到达对端局域网络,IP为对端广域网IP地址)

Router-B(config)#exit

Router-B#wr m(保存配置)

配置完成。

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章