发布网友 发布时间:2022-04-21 23:06
共3个回答
热心网友 时间:2023-07-18 15:26
ipv4---ipv6隧道服务器---ipv6
ipv6-ipv6隧道服务器--ipv4
其中ipv6隧道服务器起中转的作用。
ipv4--ipv4
ipv6-ipv6 这两种可以互联,不考虑。
希望可以帮到你!
热心网友 时间:2023-07-18 15:26
可以通过VPN的方式,也可以通过一些软件实现V4到V6的转换。
热心网友 时间:2023-07-18 15:27
对于 Cisco 路由器,可以使用 GRE ipv6 实现 IPv4 over IPv6
◆环境:
router_A 联一个 192.168.1.0/24 的IPv4子网,
router_B 联一个 192.168.2.0/24 的IPv4子网,
router_A 和 router_B 之间是通过 ipv6 互联。
◆需求:
192.168.1.0/24 和 192.168.2.0/24 两个IPv4子网之间互通。
◆配置:
router_A 配置
ipv6 unicast-routing
interface Tunnel1
ip address 10.0.0.1 255.255.255.0
tunnel source 2001:DA8:8000:100::8
tunnel destination 2001:DA8:B8:100::2
tunnel mode gre ipv6
interface FastEthernet0/0
no ip address
plex auto
speed auto
ipv6 address 2001:DA8:8000:100::8/
ipv6 enable
!
interface FastEthernet0/1
ip address 192.168.1.1 255.255.255.0
plex auto
speed auto
ip route 192.168.2.0 255.255.255.0 Tunnel1
ipv6 route ::/0 2001:DA8:8000:100::1
router_B 配置
ipv6 unicast-routing
interface Tunnel1
ip address 10.0.0.2 255.255.255.0
tunnel source 2001:DA8:B8:100::2
tunnel destination 2001:DA8:8000:100::8
tunnel mode gre ipv6
!
interface GigabitEthernet0/0
no ip address
plex auto
speed auto
ipv6 address 2001:DA8:B8:100::2/
ipv6 enable
!
interface GigabitEthernet0/1
ip address 192.168.2.1 255.255.255.0
plex auto
speed auto
ip route 192.168.1.0 255.255.255.0 Tunnel1
ipv6 route ::/0 2001:DA8:B8:100::1