惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
WordPress大学
WordPress大学
罗磊的独立博客
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
J
Java Code Geeks
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
美团技术团队
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog

博客园 - xiahaitao

Python中使用 * 处理列表 ssh-copy-id端口问题 linux下邮件查看命令 账户家目录修复过程 CCNA Day2 CCNA Day1 linux下创建用户并设置密码 国内常用NTP服务器地址及IP 虚拟光驱导致无法安装光驱驱动的解决方法 Centos语言问题 使用grep查找文件并输出 cactil安装--解决缺少snmpwalk包的问题 华为S5300交换机里的,有啥用? vim替换字符串指令 用linux做双线接入的路由器 intel显卡linux驱动 cacti安装完后就停留在登陆界面,输入默认的用户名密码登陆不进去! sftpd 启动 报错: vsftpd:500 OOPS: bad bool value in config file for: anonymous_enable Linux iptables配置FTP的主动和被动模式
CCNA Day3
xiahaitao · 2013-01-19 · via 博客园 - xiahaitao

1、广域网技术

HDLC封装、思科私有

PPP封装,在PPP上可以做PAP和CHAP认证,PAP是明文认证,CHAP是加密认证

2、路由

2.1 静态路由

R2:
enable
configure terminal
no ip domain-lookup
line console 0
logging synchronous

interface FastEthernet0/0
no shutdown
ip address 192.168.23.2 255.255.255.0

interface FastEthernet0/1
no shutdown
ip address 192.168.12.2 255.255.255.0

exit
ip route 192.168.1.0 255.255.255.0 192.168.12.1
ip route 192.168.4.0 255.255.255.0 192.168.23.3
end
wr

2.2 RIP

R1:
enable
configure terminal
no ip domain-lookup
line console 0
logging synchronous

interface fastEthernet 0/0
no shutdown
ip addr 192.168.12.1 255.255.255.0

interface fastEthernet 0/1
no shutdown
ip addr 192.168.1.254 255.255.255.0

router rip
version 2
no auto-summary
network 192.168.1.0
network 192.168.12.0
end
wr