路由器的简单配置

Router#con

Router#conf

Router#configure  t

Enter configuration commands, one per line.  End with CNTL/Z.

Router(config)#hostname R1

R1(config)#exit

R1#

R1#ter

R1#terminal  history  size  ?

<0-256>  Size of history buffer

R1#terminal  history  size  20

R1#show  history

enable

conf t

conf

con

configure  t

conf t

terminal  history  size  20

show  history

R1#termi

R1#terminal  no  hist

R1#terminal  no  history

R1#ter

R1#terminal  history

R1#clock  ?

set  Set the time and date

R1#clock  set 22:28:00  3  june  2013

R1#conf t

Enter configuration commands, one per line.  End with CNTL/Z.

R1(config)#clock ?

initialize   Initialize system clock on restart

save         backup of clock with NVRAM

summer-time  Configure summer (daylight savings) time

timezone     Configure time zone

R1(config)#clock timez

R1(config)#clock timezone ?

WORD  name of time zone

R1(config)#clock timezone  GMT +8

R1(config)#inter

R1(config)#interface ser

R1(config)#interface serial  1/1

R1(config-if)#exit

R1(config)#int

R1(config)#inter s1/1

R1(config-if)#ip  add

R1(config-if)#ip  address 12.1.1.1  255.255.255.0

R1(config-if)#no  shutdo

R1(config-if)#no  shutdown

R1(config-if)#end

R1#show  ip  interface brief

R2(config-if)#do  show  ip  inter  brief

R2(config-if)#do ping 12.1.1.1

R2(config)#line vty 0 4

R2(config-line)#pas

R2(config-line)#password  123

R2(config-line)#log

R2(config-line)#login

####R2(config)#enable password  456

R2(config)#enable secret   789

R2(config)#exit

R2#show  running-config

R2#conf  t

Enter configuration commands, one per line.  End with CNTL/Z.

R2(config)#enable ?

last-resort  Define enable action if no TACACS servers respond

password     Assign the privileged level password

secret       Assign the privileged level secret

use-tacacs   Use TACACS to check enable passwords

R2(config)#enable se

R2(config)#enable secret cisco

R2#exit   ##退出R1远程登录R2

R1#telnet  12.1.1.2

路由器后面的AUX是连接猫modern通过拨号电话号码远程配置路由器的(当不给vpn,不给internet,不给QQ远程的情况下使用的)旁边的是连交换机的接口的

前言:在网上搜集了不少资料,最后摸到答案,希望为遇到同样问题的同学提供一种解决方案,节约大家学习时间。

课程段:刘贝斯老师《网络工程师教程》2-8——2-11课程

环境:win7 32位

问题:在该课程指导下dynamips用本机ping R1,ping不通,即第一次ping R1 F0/0:192.168.1.1及S1/1:12.1.1.1。

解决方案:

1、右键计算机管理——设备管理器——右键计算机名——添加过时硬件——安装我手动...——网络适配器——Microsoft(左栏)-Microsoft Loopback Adapter——安装完成

2、重启计算机,确认在网络连接里看到Microsoft Loopback Adapter的本地连接,说明安装成功。

3、在CCNA dynamips重新获取网卡参数,

选择名为MS LoopBack Driver‘ on local host的网卡参数,并按照视频教程重新粘贴到指定位置保存。(注意:CMD下getmac命令也可以获得网卡参数,但此参数略有差异需修改,建议直接用软件提供的批处理程序获得网卡参数)

4、在网络连接原来真实网卡本地连接中选择自动获取IP,在Microsft Loopback Adapter的本地连接中按教程设置相应IP。

5、按照教程和拓扑图完成实验配置,在完成R1的配置后即可尝试ping F0/0:192.168.1.1及S1/1:12.1.1.1,祝你成功。

start R1

idlepc get R1

idlepc save R1 db

stop R1

R1

en

conf t

int f0/0

ip add 192.168.1.1 255.255.255.0

no sh

int s1/1

ip add 12.1.1.1 255.255.255.0

no sh

end

conf t

ip route 23.1.1.0 255.255.255.0 12.1.1.2

ip route 3.3.3.0 255.255.255.0 12.1.1.2

end

R2

en

conf t

int s1/0

ip add 12.1.1.2 255.255.255.0

no sh

int s1/1

ip add 23.1.1.2 255.255.255.0

no sh

end

conf t

ip route 192.168.1.0 255.255.255.0 12.1.1.1

ip route 3.3.3.0 255.255.255.0 23.1.1.3

end

R3

en

conf t

int s1/0

ip add 23.1.1.3 255.255.255.0

no sh

int lo0

ip add 3.3.3.3 255.255.255.0

no sh

end

conf t

ip route 192.168.1.0 255.255.255.0 23.1.1.2

ip route 12.1.1.0 255.255.255.0 23.1.1.2

end

----------------------------------------------------------------------------------------------

en

conf t

host R1

int f0/0

ip add 192.168.1.1  255.255.255.0

no shut

int s1/1

ip add 12.1.1.1  255.255.255.0

no shut

en

conf t

host R2

int s1/0

ip add 12.1.1.2  255.255.255.0

no shut

int s1/1

ip add 23.1.1.2  255.255.255.0

no shut

en

conf t

host R3

int s1/0

ip add 23.1.1.3  255.255.255.0

no shut

int lo0

ip add 3.3.3.3  255.255.255.0

R2#debug  ip  icmp

R2#conf t

R2#ip  route 192.168.1.0  255.255.255.0  12.1.1.1

R2#no  debug  ip  icmp

R1#conf t

R1#ip  route  23.1.1.0 255.255.255.0  12.1.1.2

R3#ip  route  192.168.1.0  255.255.255.0  23.1.1.2

R1#ip  route  3.3.3.0 255.255.255.0  12.1.1.2

R2#ip  route  3.3.3.0 255.255.255.0  23.1.1.3

R1#en

conf t

int f0/0

ip add 192.168.1.1  255.255.255.0

no shut

route#copy  runing-config  tftp   (下载配置文件到cisco  TFTP  Server里)

192.168.1.2

r1

route#copy  tftp  running-config

192.168.1.2

r1

R1#ping

Protocol [ip]:

Target IP address: 23.1.1.3

Repeat count [5]:

Datagram size [100]:

Timeout in seconds [2]:

Extended commands [n]: y

Source address or interface: 192.168.1.1

Type of service [0]:

Set DF bit in IP header? [no]:

Validate reply data? [no]:

Data pattern [0xABCD]:

Loose, Strict, Record, Timestamp, Verbose[none]:

Sweep range of sizes [n]:

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 23.1.1.3, timeout is 2 seconds:

Packet sent with a source address of 192.168.1.1

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 12/31/44 ms

R1#

或者让r1的s1/1可以ping通3.3.3.3就增加r1的s1/1的路由在R3上

R3>enable

R3#conf t

Enter configuration commands, one per line.  End with CNTL/Z.

R3(config)#ip  route  12.1.1.0  255.255.255.0  23.1.1.2

##############################################################

R1>enable

R1#show cdp  nei

Capability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge

S - Switch, H - Host, I - IGMP, r - Repeater

Device ID        Local Intrfce     Holdtme    Capability  Platform  Port ID

R2               Ser 1/1            154          R        7206VXR   Ser 1/0

R1#show cdp

Global CDP information:

Sending CDP packets every 60 seconds

Sending a holdtime value of 180 seconds

Sending CDPv2 advertisements is  enabled

R1#enable

R1#conf t

Enter configuration commands, one per line.  End with CNTL/Z.

R1(config)#cdp ?

advertise-v2      CDP sends version-2 advertisements

holdtime          Specify the holdtime (in sec) to be sent in packets

log               Log messages generated by CDP

run               Enable CDP

source-interface  Insert the interface‘s IP in all CDP packets

timer             Specify rate (in sec) at which CDP packets are sent

R1(config)#cdp  timer

R1(config)#cdp  timer  10

R1(config)#cdp  hol

R1(config)#cdp  holdtime  100

R1(config)#do show cdp

Global CDP information:

Sending CDP packets every 10 seconds

Sending a holdtime value of 100 seconds

Sending CDPv2 advertisements is  enabled

R1(config)#

###################################################################

实验步骤:路由器重置密码

1、使用超级终端连接到路由器控制台端口

2、如果忘记了特权密码,但任然可以进入用户模式

可以使用“show version”命令查看路由器的配置寄存器值

该步骤对密码恢复一般没什么用,除非配置寄存器的值为0x2142,

表示启动时不加载用户配置,但一般路由器都不会是这个值。

3、使用电源关闭路由器R1,然后再给路由器R1加点重启

4、在路由器重启的60秒内,按键盘“ctrl+break”我的电脑联想T450用的是Fn+ctrl+b组合键,稍后会

进入ROMmon模式

5、修改寄存器的值为:0x2142,有些路由器前面输入的是o/r

confreg 0x2142

reset

6、重启后,回答n,输入enable,在进入特权模式不用输密码了

7、copy startup-config running-config

如果不拷贝,直接修改密码并保存,老的启动配置文件将被覆盖

以前的配置都将丢失

8、使用“show running-config”命令,会看一些密码,如果密码被

加密了,可以输入新的密码conf t----enable secret   [email protected],先把配置复制粘贴出来保存到记事本里一份再做下一步操作,以防失败。

9、使用“no shutdown”命令,

R1#show ip inter  brief

R1(config)#inter  fa0/0

R1(config-if)#no  shut

R1(config-if)#inter  fa0/1

R1(config-if)#no  shut

打开所有使用的端口,

因为copy startup-config running-config 是把startup-config和

running-config做了一个简单的合并,很多过去使用的running-config

中配置是shutdown ,在合并后的最终running-config文件中,这些

端口仍然是关闭的,所以需要把一些使用的端口手工打开

10、改回配置寄存器的值:config-register 0x2102,不改的话,重启后

是不会加载用户配置文件的

R1#conf t

Enter configuration commands, one per line.  End with CNTL/Z.

R1(config)#config-reg

R1(config)#config-register  0x2102

R1(config)#end

R1#

%SYS-5-CONFIG_I: Configured from console by console

R1#write

Building configuration...

[OK]

11、使用“write”或“copy startup-config running-config”,保存

路由器的配置,路由器密码恢复成功

----------------------------------------------------------------------------------------

实验步骤:交换机重置密码

1、使用console线把计算机和交换机互连,进到命令提示行界面

2、断电重启交换机,并且在启动的过程中按下交换机面板上的mode按键,

大概10秒左右,可以看到命令提示行界面改变,让我们输入命令

3、输入命令“flash_init”回车

4、输入命令“load_helper”启用交换机的管理助手

5、输入命令“dir  flash",可以查看到交换机中的所有文件,有一个名为:config.text的文件,

就是交换机启动时加载的文件

6、将该文件重命名:rename  flash:config.text  flash:config.old

修改完成后,当交换机启动时没有找到config.text文件就无法加载初始点密码信息,

从而可以通过空密码来登录交换机进行管理操作

7、输入命令"reboot"重启

8、重启后,输入“enable”进入特权模式,把之前重命名的文件config.old改回

来:  rename  flash:config.old   flash:config.text

9、输入命令“copy  startup-config  running-config”重新加载config.text

10、修改新的密码,“write”保存配置

####################################################################

en

conf t

host R1

no cdp run              ##影响实验

inter f0/0

ip add 13.1.1.1 255.255.255.0

no shut

inter s1/1

ip add 12.1.1.1 255.255.255.0

no shut

inter lo 0

ip add 1.1.1.1 255.255.255.0

end

conf t

router rip

net 1.0.0.0

net 12.0.0.0

net 13.0.0.0

en

conf t

host R2

no cdp run

inter s1/0

ip add 12.1.1.2 255.255.255.0

no shut

inter s1/1

ip add 23.1.1.2 255.255.255.0

no shut

inter lo 0

ip add 2.2.2.2 255.255.255.0

end

conf t

router rip

net 2.0.0.0

net 12.0.0.0

net 23.0.0.0

en

conf t

host R3

no cdp run

inter f0/0

ip add 13.1.1.3 255.255.255.0

no shut

inter s1/0

ip add 23.1.1.3 255.255.255.0

no shut

inter lo 0

ip add 3.3.3.3 255.255.255.0

end

conf t

router rip

net 3.0.0.0

net 13.0.0.0

net 23.0.0.0

R1>en

R1#debug  ip  icmp

R1#debug  ip  rip

R1#no  debug  ip  rip

R1#show   interface  f0/0  #看接口信息

R1#show  ip  interface  f0/0

split  horizon  is  enabled   #打开了水平分割

R1#conf t

R1(config)#router  rip

R1(config-router)#passive-interface   lo0  #关闭lo0口的更新发送,减少资源的浪费

R1(config)#no  ip  split-horizon   #关闭水平分割

R1#no  debug  ip  rip

R1#ping  23.1.1.2

R1#conf t

Enter configuration commands, one per line.  End with CNTL/Z.

R1(config)#router  rip

R1(config-router)#timer  basic  40  240 0  320

R1(config-router)#no  ip  cef              ##关闭快速交换,启用了进程交换,实现了负载均衡

R1#show ip   protocols

修改rip定时器的默认值

基本命令格式:失效定时器时间<刷新定时器时间

timers  basic  更新定时器时间  失效定时器时间   抑制定时器时间  刷新定时器时间

timer  basic  40  240  0  320

int  f0/0

ip  add  192.168.1.1  255.255.255.0

no  shut

int  s1/1

ip  unnumberd  f0/0  #IP地址的借用

no  shut

ip  route

ip  route   192.168.2.0  255.255.255.0  s1/1   ##s1/1为本地路由器的接口

##############################################################

//实际项目工程中,多用这种方法

router rip

net 12.0.0.0

defaulet-information originate  //声明R2是默认路由的起源,这样R2就会向其他RIP路由器,宣告自己是默认路由

exit

ip route 0.0.0.0 0.0.0.0 23.1.1.3   ##下一个路由器的接口IP

router rip

net 12.0.0.0

net 193.1.1.0

exit

ip route 193.1.2.0 255.255.255.0 21.1.1.2  130   ##浮动静态路由,当专线down掉时候用这个静态路由

###################################################################

en

conf t

host R1

int f0/0

ip add 192.168.1.1 255.255.255.0

no shut

int s1/1

ip unnumbered f0/0                  #借用f0/0的地址

no shut

exit

ip route 192.168.2.0 255.255.255.0 s1/1     ##s1/1是本路由器的接口,192.168.2.0是对端的ip地址

en

conf t

host R2

int f0/0

ip add 192.168.2.1 255.255.255.0

no shut

int s1/0

ip unnumbered f0/0

no shut

exit

ip route 192.168.1.0 255.255.255.0 s1/0

router rip

version 2

net 192.168.1.0

router rip

ver 2

net 12.0.0.0

net 192.168.1.0

no auto-summary   ##关闭自动汇总,路由器不通可以用

R1上使用手工汇总

int s1/1

ip summary-address rip 192.168.1.0 255.255.255.192   ###rip的手动汇总

en

conf t

host R1

int s1/1

ip add 12.1.1.1 255.255.255.0

no shut

int lo0

ip add 192.168.1.1 255.255.255.0

router rip

ver 2

net 12.0.0.0

net 192.168.1.0

exit

key chain ccna

key 1

key-string cisco                                ###接口2端的密码要一样不然不通

int s1/1                                              ###

ip rip authentication mode md5

ip rip authentication key-chain ccna

###########################

router rip

ver 2

net 12.0.0.0

net 192.168.2.0

exit

key chain ccna

key 1

key-string cisco

int s1/0

ip rip authentication mode md5

ip rip authentication key-chain ccna

####################################################

把show   running-config的配置信息复制-粘贴到路由器里

en

conf t

复制--粘贴show  running-config的配置

show  cdp  nei

ping  直连端口的IP再ping回环地址和其他IP看看是否会通

show ip  inter  brief 看接口IP和协议有没有up起来

show   ip  pro看看协议正确吗

R2(config)#router  rip

R2(config-router)#ver

R2(config-router)#version  2              ##改过来版本2

R2(config-router)#do show  ip  pro

###################

router eigrp 100

network 12.1.1.0 0.0.0.255

net 21.1.1.1 0.0.0.255

net 1.1.1.0 0.0.0.255

router eigrp 100

network 0.0.0.0

int s1/0

ip add 125.1.1.2 255.255.255.0 secondary

R1#show ip  protocols

Routing Protocol is "eigrp 100"

EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0    ###默认是k1=k3=1,  k2=k4=k5=0

EIGRP maximum hopcount 100

R1# conf t

R1(config)#router eigrp  100

R1(config-router)#metric  weights 0 1 0 0 0 0

R1(config-router)#metric  weights 0 1 0 1 0 0

R1#show  ip  eigrp  neighbors

eigrp排错:链路接口的IP地址,AS号是否匹配,不能配置被动接口

show  inter  f0/0

show  ip  route

R1#show  ip  eigrp  topology  #eigrp的拓扑表

P 2.0.0.0/8, 1 successors, FD is 156160  ##

via 21.1.1.2 (##156160/128256), FastEthernet0/0

via 12.1.1.2 (2297856/128256), Serial1/1

R1#show  ip  eigrp  topology  all-links             #RD<FD

R1#show   ip  eigrp  topology

P 23.0.0.0/8, 1 successors, FD is 2172416

via 13.1.1.3 (2172416/2169856), FastEthernet0/0     2172416

via 12.1.1.2 (2681856/2169856), Serial1/1                2681856

R1#conf t

R1(config)#router  eigrp  100         ##100=AS号

R1(config-router)#variance  2         ###2=2681856/2172416

R1#show   ip  route   ##可以看到有2条负载均衡的线路了

注意:eigrp次要路由要写进路由表要满足2个条件

1.度量值<N*FD    2.RD<FD

N=2=2681856/2172416

###########################################################

eigrp的自动汇总

R2(config-if)#router eigrp 100

R2(config-router)#net 0.0.0.0

R2(config-router)#router  eigrp  100

R2(config-router)#passive-interface  default     ##把路由器2上的接口全部设置为被动接口

R2(config-router)#no passive-interface  s1/0    ##这个不是回环接口打开这个接口

eigrp手动汇总

R2#conf t

R2(config)#router  eigrp   100

R2(config-router)#no  auto-summary       ##关闭自动汇总

R2(config)#router  eigrp  100

R2(config-router)#exit

R2(config)#inter  s1/0

R2(config-if)#ip  summary-address  eigrp  100  2.2.0.0  255.255.254.0   ###手动汇总

eigrp的外部路由

router eigrp 100

redistribute connected

ip route 0.0.0.0 0.0.0.0 1.1.1.2    ###1.1.1.2是ISP的路由器地址公网的

router eigrp 100

redistribute static

####################################

eigrp的验证

en

conf t

key chain test          #秘钥的名字

key 1                       #1把钥匙

key-string cisco      #秘钥的密码

int s1/1

ip authentication key-chain eigrp 100 test    #匹配key  chain  test密钥

ip authentication mode eigrp 100 md5         #md5验证秘钥

#########################################

eigrp性能调整

R1(config-if)#do  show  ip  inter  brief      ###查看有哪些起来的接口

R1(config-if)#do show  inter  s1/1            ###查看具体的接口带宽多少

R1#conf t

R1(config)#inter  s1/1

R1(config-if)#ip  bandwidth-percent  eigrp  100 5     ###调整使用带宽的50%,100是AS号

#########################################

eigrp排错思路

show  ip  pro   #路由协议,AS号,K值不匹配,物理层的连接

show ip   eigrp  nei

show  ip  inter  brief

conf t

inter s1/1

no  ip  add 23.1.1.3 255.255.255.0   #删除接口IP地址

接口起来了就不需要no  shut接口了

##############################

show ip  inter  brief

conf t

router  ospf  1   #1随便其他路由器不一样也可以

network 12.1.1.0 0.0.0.255  area 0  #直连接口必须在同一个区域中

network 123.1.1.1  0.0.0.0  area 0

int  f0/0

ip add 123.1.1.2  255.255.255.0

no shut

router  ospf  1   #不需要切到配置conf t模式接口模式也可以直接配置ospf协议

network  0.0.0.0 0.0.0.0  area 0  #所有接口都配置到ospf就0.0.0.0就可以了

int  lo0

ip add 3.3.3.3 255.255.255.0  #环回口不需要no shut

router ospf 3

network 3.3.3.3  255.255.255.0  area 0  #255.255.255.0也可以正着写,不需要写反掩码

do  show  ip  inter brief    #看端口状态和协议状态

do  show ip  protocals      ##看运行的协议

#############################################

show ip  route

show ip  ospf/eigrp  nei

do show ip  ospf  inter f0/0

do show ip  ospf  database   #三台路由器的数据链路表都是一样的

##############################################

do  show  ip  protocols    ##看ospf 3

conf t

router ospf  3

router-id  5.5.5.5                 #修改router-id号

do clear ip ospf  process  #重启ospf的进程

回答y

do show  ip pro

################################################

int f0/0

ip ospf  priority 0 #将其他路由器的优先级设为0,这样子优先级为0的路由器就不参与DR和BDR的选举了

#################################################

show ip inter  f0/0 #看实际带宽

ospf的默认默认参考带宽是100MB/S

修改这个值:R1(config-router)#auto-cost reference-bandwidth  10000

哪么计算公式也要改为:10000MB/S除以实际带宽(取整,结果小于0时取1)

在同一个OSPF/area网络中,修改了一台路由器默认带宽,其他也要修改

###################################################

ospf的明文验证

debug  ip  ospf  packet

no debug  ip  ospf  packet

aut:2 为md5验证

conf t

inter f0/0

ip ospf  authentication-key cisco   #明文验证密码是cisco

exit

router ospf 1

area 0 authentication   #0是明文验证

exit

inter s1/1

ip ospf  authentication-key cisco  #在同一个area就不需要area 0 authentication

do  show ip  ospf nei

####################################################

ospf的MD5验证

int  f0/0

no ip ospf authentication-k

ip ospf  message-digest-key  1 md5  cisco

int  s1/1

no ip ospf authentication-k

ip ospf  message-digest-key  1 md5  cisco

exit

router ospf 1

area 0 authentication   message-digest

#####################################################

ospf的默认路由

inter lo0

ip  add  1.1.1.1  255.255.255.0

exit

ip  route 0.0.0.0  0.0.0.0  lo0

router ospf 1

default-information  originate

do show ip  route    #可以看到学到的默认路由

#######################################################

ospf排错

en

erase  startup-config   #(回车)删除路由器的预存配置

conf t

R1(config)#int l0

R1(config-if)#ip  add 10.10.0.1  255.255.252.0    #环回口ip配置错误

int  s1/0       #do  show ip  inter brief协议down看直连的下一个路由器的接口

no shut

R1

do  show ip  route

do  show  ip  pro

router  ospf 1

no  network 10.10.0.0  0.0.7.255  area 0

net 10.10.0.0  0.0.3.255  area 0

show  ip  ospf  nei

show  ip  ospf  nei

show  ip  route

default-information  originate  #宣告默认路由

default-information  originate  #宣告默认路由

do ping

10.10.4.1  #目的IP地址

扩展y

10.10.0.1  #源IP地址

R2

show ip  pro

router ospf 1

no passive-interface  s1/0

passive-interface  l0      #l0=loopback0修改环回口为被动接口

show ip  pro

do show ip  route

do show ip  route

R3

show  ip  route

show  ip  ospf nei

第一步:连线,删除路由器预存配置文件,重启路由器

1.连线

根据图中拓扑进行连线,但是我们使用的是模拟机架,这个工作就省去了。

2.清除每台路由器的配置

在实际环境中,每台路由器可能已经有了配置文件了,需要我们删除已经有的配置文件,然后重启路由。因为我们用的模拟路由器也不存在这个问题。

实际环境中,删除路由器配置方法

命令:erase startup-config

第二步:装入路由器的预配置

第三步:排除物理层故障

1.根据拓扑图,检查路由器的连线是否正常。因为使用的是模拟机架,所以肯定正常。

2.检查线缆类型

第四步:排除数据链路层故障

1.检查串行线路两端封装协议是否一致。目前为止我们没有介绍过封装协议,所以这个地方不会有错,串行接口默认使用的是HDLC封装。

2.参加CCNA考试的同学要检查packet tracer模拟器中时钟的配置。现实环境中不需要。

第五步:排除网络层接口的故障

检查R1,R2,R3各个接口的IP地址,子网掩码,端口状态是否正常。各直连接口可以相互ping痛

第六步:排除网络层路由协议故障

通过查看路由表,邻居表,和路由协议发现故障并排除

第七步:测试

第八步:保存配置记录文档

时间: 2024-10-09 23:41:03

路由器的简单配置的相关文章

路由器的简单配置实验

路由器的简单配置实验配置0/0/0接口<Huawei>system-view [Huawei]interface GigabitEthernet 0/0/0[Huawei-GigabitEthernet0/0/0]ip address 192.168.1.254 255.255.255.0[Huawei-GigabitEthernet0/0/0]undo shutdown[Huawei-GigabitEthernet0/0/0]quit配置0/0/1接口<Huawei>system

CCNA网络工程师学习进程(7)路由器的路由配置

    前面一节已经介绍了路由器的端口配置,接着我们介绍路由器的路由配置:静态路由.默认路由和浮动路由的配置:动态路由协议的配置,包括RIP.IGRP.EIGRP和OSPF.     (1)路由器的基础深入: 1)静态路由: 静态路由是指由用户或网络管理员手工配置的路由信息. 静态路由适用于:简单的网络环境和支持DDR(Dial-on-Demand Routing)的网络中. 在DDR(按需拨号路由选择)链路中,拨号链路只在需要时才拨通,因此不能为动态路由信息表提供路由信息的变更情况.DDR允许

不同vlan间的通信简单配置(三种方式)

不同vlan间的通信简单配置 1.单臂路由(图) 环境:一台路由器,一台二层交换机,两台pc机 二层交换机的配置一般模式:Switch>输入enable进入特权模式:Switch>enable输入configure terminal进入全局配置模式:Switch#configure terminal Enter configuration commands, one per line.  End with CNTL/Z.创建vlan 10 和 vlan 20:Switch(config)#vl

tinc vpn简单配置示例扩展(一)——跨越三层网络

tinc vpn简单配置示例扩展(一)--跨越三层网络 在tinc vpn简单配置示例(http://watertoeast.blog.51cto.com/8489855/1711649)一文中,构建tinc VPN的两台机器同属一个局域网(如图一),这样的场景基本与实际应用情况不符.今天对简单示例进行扩展,使构建vpn的两台主机跨越三层网络边界(如图二). 图一 tinc vpn in lan 图二 tinc VPN跨越三层网络边界 如图二所示,PC02的IP地址变成了172.16.1.6,与

Linux下iptables防火墙简单配置

Linux下防火墙简单配置 作为一个网站服务器,只需要开放80端口和22端口即可.80用于web访问,22用于远程登录管理,可以把22端口改成其他的端口,这样更安全.一般来说 在创建访问规则时 都会将原有的规则清零 这是一个比较好的习惯,因为某些规则的存在会影响你建的规则. 基本语法:iptables [-t filter] [-AI INPUT,OUTPUT,FORWARD] [-io interface]         [-p tcp,udp.icmp,all] [-s ip/nerwor

Packet Tracer 5.0实验(八) 路由器静态路由配置

Packet Tracer 5.0实验(八) 路由器静态路由配置 一.实验目标 掌握静态路由的配置方法和技巧: 掌握通过静态路由方式实现网络的连通性: 熟悉广域网线缆的连接方式: 二.实验背景 学校有新旧两个校区,每个校区是一个独立的局域网,为了使新旧校区能够正常相互通讯,共享资源,每个校区出口利用一台路由器进行连接,两台路由器间学校申请了一条2M的DDN专线进行相连,要求你做适当配置实现两个校区间的正常相互访问. 三.技术原理 路由器属于网络层设备,能够根据IP包头的信息,选择一条最佳路径将数

第七章 路由器的基本配置

一.实验名称 路由器的基本配置 二.实验内容 1.新建 packet tracer 拓扑图2.用标准 console 线缆用于连接计算机的串口和路由器的 console 上.在计算机上启用超级终端,并配置超级终端的参数,是计算机与路由器通过 console 接口 建立连接:3.配置路由器的管理的 IP 地址,并为 Telnet 用户配置用户名和登录口令.配置 计算机的 IP 地址(与路由器管理 IP 地址在同一个网段),通过网线将计算机和 路由器相连,通过计算机 Telnet 到路由器上对交换机

VLAN的简单配置实验

VLAN的简单配置实例(图文并茂) 一.实验环境 首先我们得有简单的实验环境:GNS3,C2691路由器 二.实验图示 如图,先建立如图所示的简单拓扑图. 注:记得给交换机设置好参数.如图<img src="http://itmc.oss-cn-hangzhou.aliyuncs.com/blog/20191018/192106829.png" alt="mark" style="zoom: 80%;" /> <img src=

0123简单配置LNMP

简单配置LNMP不怕出现错误,就怕错误不知道出现在哪里?看日值tail -f /var/log/message -- 系统整个的日志tail -f /var/log/nginx/error.log -- 单个应用的日志http://www.cnblogs.com/make217/p/5836864.htmlhttp://www.cnblogs.com/xiaoit/p/3991037.html