当前位置: 首页 > news >正文

网站设计不同的原因p2p网站的建设

网站设计不同的原因,p2p网站的建设,宠物网站首页模板,有什么简单的网站项目一、IPv4 over IPv4拓扑Tunnel隧道接口协议UP的三个条件:使能IPv4或IPv6(配置IPv4或IPv6地址)source地址在本设备上协议UPdestication地址的路由可达(在路由表中可见)1、基础配置AR1 system sysname AR1 int g 0/0/0 ip add 192.168.1.254 24 int g 0/0/1 ip add 10.0.12.1 24A…

一、IPv4 over IPv4

拓扑

Tunnel隧道接口协议UP的三个条件:

  • 使能IPv4或IPv6(配置IPv4或IPv6地址)
  • source地址在本设备上协议UP
  • destication地址的路由可达(在路由表中可见)

1、基础配置

AR1
system
sysname AR1
int g 0/0/0
ip add 192.168.1.254 24
int g 0/0/1
ip add 10.0.12.1 24AR2
system
sysname AR2
int g 0/0/0
ip add 10.0.12.2 24
int g 0/0/1
ip add 10.0.23.2 24AR3
system
sysname AR3
int g 0/0/0
ip add 10.0.23.3 24
int g 0/0/1
ip add 172.16.1.254 24

2、隧道接口配置

AR1
int tunnel 0/0/0
ip address 10.0.1.1 255.255.255.0 
tunnel-protocol gre
source 10.0.12.1
destination 10.0.23.3AR3
int tunnel 0/0/0
ip address 10.0.3.3 255.255.255.0 
tunnel-protocol gre
source 10.0.23.3
destination 10.0.12.1

3、路由配置

AR1
ip route-static 172.16.1.0 24 tunnel 0/0/0
ospf 1 router-id 1.1.1.1
area 0
netw 10.0.12.1 0.0.0.0AR2
ospf 1 router-id 2.2.2.2
area 0
netw 10.0.12.2 0.0.0.0
netw 10.0.23.2 0.0.0.0AR3
ip route-static 192.168.1.0 24 tunnel 0/0/0
ospf 1 router-id 3.3.3.3
area 0
netw 10.0.23.3 0.0.0.0

查看邻居状态

[AR2]display ospf peer brief OSPF Process 1 with Router ID 2.2.2.2Peer Statistic Information----------------------------------------------------------------------------Area Id          Interface                        Neighbor id      State    0.0.0.0          GigabitEthernet0/0/0             1.1.1.1          Full        0.0.0.0          GigabitEthernet0/0/1             3.3.3.3          Full        ----------------------------------------------------------------------------

查看隧道接口状态

[AR1]display ip int brief 
*down: administratively down
^down: standby
(l): loopback
(s): spoofing
The number of interface that is UP in Physical is 4
The number of interface that is DOWN in Physical is 1
The number of interface that is UP in Protocol is 4
The number of interface that is DOWN in Protocol is 1Interface                         IP Address/Mask      Physical   Protocol  
GigabitEthernet0/0/0              192.168.1.254/24     up         up        
GigabitEthernet0/0/1              10.0.12.1/24         up         up        
GigabitEthernet0/0/2              unassigned           down       down      
NULL0                             unassigned           up         up(s)     
Tunnel0/0/0                       10.0.1.1/24          up         up 
[AR3]display ip int brief 
*down: administratively down
^down: standby
(l): loopback
(s): spoofing
The number of interface that is UP in Physical is 4
The number of interface that is DOWN in Physical is 1
The number of interface that is UP in Protocol is 4
The number of interface that is DOWN in Protocol is 1Interface                         IP Address/Mask      Physical   Protocol  
GigabitEthernet0/0/0              10.0.23.3/24         up         up        
GigabitEthernet0/0/1              172.16.1.254/24      up         up        
GigabitEthernet0/0/2              unassigned           down       down      
NULL0                             unassigned           up         up(s)     
Tunnel0/0/0                       10.0.3.3/24          up         up  

查看隧道路由

[AR1]display ip routing-table 172.16.1.0
Route Flags: R - relay, D - download to fib
------------------------------------------------------------------------------
Routing Table : Public
Summary Count : 1
Destination/Mask    Proto   Pre  Cost      Flags NextHop         Interface172.16.1.0/24  Static  60   0           D   10.0.1.1        Tunnel0/0/0
[AR3]display ip routing-table 192.168.1.0
Route Flags: R - relay, D - download to fib
------------------------------------------------------------------------------
Routing Table : Public
Summary Count : 1
Destination/Mask    Proto   Pre  Cost      Flags NextHop         Interface192.168.1.0/24  Static  60   0           D   10.0.3.3        Tunnel0/0/0

测试:

抓包

二、IPv6 over IPv4

拓扑

1、基础配置

AR1
system
sysname AR1
ipv6
int g 0/0/0
ipv6 enable
ipv6 add 2001::ffff 64
int g 0/0/1
ip add 10.0.12.1 24
int tunnel 0/0/0
ipv6 enable
ipv6 add 2001:1::1 64AR2
system
sysname AR2
int g 0/0/0
ip add 10.0.12.2 24
int g 0/0/1
ip add 10.0.23.2 24AR3
system
sysname AR3
ipv6
int g 0/0/1
ipv6 enable
ipv6 add 2000::ffff 64
int g 0/0/0
ip add 10.0.23.3 24
int tunnel 0/0/0
ipv6 enable
ipv6 add 2001:3::1 64

2、隧道接口配置

AR1
int t 0/0/0
tunnel-protocol gre
source 10.0.12.1
destination 10.0.23.3AR3
int t 0/0/0
tunnel-protocol gre
source 10.0.23.3
destination 10.0.12.1

3、路由配置

AR1
ipv6 route-static 2000:: 64 Tunnel 0/0/0
ospf 1 router-id 1.1.1.1
area 0
netw 10.0.12.1 0.0.0.0AR2
ospf 1 router-id 2.2.2.2
area 0
netw 10.0.12.2 0.0.0.0
netw 10.0.23.2 0.0.0.0AR3
ipv6 route-static 2001:: 64 Tunnel 0/0/0
ospf 1 router-id 3.3.3.3
area 0
netw 10.0.23.3 0.0.0.0

查看隧道路由

[AR1]display ipv6 routing-table 2000:: 64
Routing Table :
Summary Count : 1Destination  : 2000::                          PrefixLength : 64NextHop      : 2001:1::1                       Preference   : 60Cost         : 0                               Protocol     : StaticRelayNextHop : ::                              TunnelID     : 0x0Interface    : Tunnel0/0/0                     Flags        : D

测试:

抓包:

以上就是本章的全部内容了,如果本文章对你的学习有所帮助麻烦点个赞加个收藏,文章若有错误或疑问可联系博主删除更改,感谢大家的浏览观看!

http://www.dtcms.com/a/608588.html

相关文章:

  • 网站内容建设需要注意哪些问题哈尔滨网站建设公司
  • 黄埭做网站宜兴做阿里巴巴网站
  • 门户网站网页设计成都推广运营公司
  • 一个做问卷调查的网站dw个人网站设计
  • 自适应企业建站企业58网站建设
  • 前端网站建设山西网站建设哪家好
  • 竹子林附近网站建设wordpress速度主题
  • 网站建设怎么学习上海网络维护找哪家好
  • 网站建设服务协议模板公众号怎么开通视频号
  • 杭州职称评审系统网站做网站的原型文件下载
  • 在哪进入网站后台顺德小程序开发公司
  • 精美静态网站源码淮北网站建设费用
  • 网站和网页不同吗亚马逊跨境电商平台怎么入驻
  • 厦门市同安区建设局公开网站小程序登录入口网页版官网
  • 深圳网站维护页面设计镇江建筑公司排名最新
  • 做建材的网站好名字wordpress始终无法登录
  • 做网站时背景音乐云商城是什么平台
  • 公司网站招聘的作用建材行业网站建设方案
  • 为什么做织梦网站时图片出不来游戏代理
  • 东营建设信息网网站碧江网站建设
  • 苏州公司网站制作公司页面设置自定义wordpress
  • 代理商加盟网站设计公司网站图
  • 电子商务网站 功能外贸网站产品分析
  • 免备案网站建设软件西安网站建设网站排名优化
  • 广州网站建设网络科技有限公司城乡建设吧部网站
  • 搜索引擎网站排行榜宝山青岛网站建设
  • 手机网站优化需要注意什么网站模版超市
  • 中山h5网站建设济南房地产网app下载
  • 网站做优化按点击收费2023年10月爆发新冠
  • 建水网站建设ssr网站开发