添加主机时 ISATAP 配置不起作用

网络工程 思科 路由 IPv6 隧道 ipv6-过渡
2022-02-28 20:45:27

我正在尝试进行 ISATAP 配置,其中连接到双堆叠路由器的两个 ipv6 主机可以相互通信。

我有以下配置:配置

我已经在 IPV4 网络上配置了 RIP,配置了 ISATAP 隧道并配置了静态路由,其中​​每个到达边缘路由器且目标为主机的数据包都将被转发到主机。

R1 和 R3 似乎通信良好(ping 到 ipv6 接口有效)。

R1的配置是:

interface Tunnel 1
no ip address
no ip redirects
ipv6 address 133::/64 eui-64
tunnel source 10.0.1.1
tunnel mode ipv6ip isatap
exit

interface FastEthernet0/0
ip address 10.0.1.1 255.255.255.0
no shutdown
exit

interface FastEthernet0/1
no ip address
no shutdown
ipv6 address 2001::1/64 
exit

ipv6 route 2003::/64 133::5EFE:A00:301
ipv6 route 2001::2/64 FastEthernet0/1
exit

对于 R2:

interface Tunnel 1
no ip address
no ip redirects
ipv6 address 133::/64 eui-64
tunnel source 10.0.3.1
tunnel mode ipv6ip isatap
exit

interface FastEthernet0/0
ip address 10.0.3.1 255.255.255.0
no shutdown
exit

interface FastEthernet0/1
no ip address
no shutdown
ipv6 address 2003::1/64 
exit

ipv6 route 2001::/64 133::5EFE:A00:101
ipv6 route 2003::2/64 FastEthernet0/1
exit

**路由器型号为cisco c375

谢谢

1个回答

解决了,问题是没有启用 ipv6 单播路由。这可以通过使用来完成:ipv6 unicast-routing