ip multicast-routing
crypto isakmp policy 2
encr 3des
hash md5
authentication pre-share
crypto isakmp key 123 address 1.7.129.10
!
crypto ipsec transform-set remotevpn esp-3des esp-md5-hmac
!
crypto map remotevpn 1 ipsec-isakmp
set peer 1.7.129.10
set transform-set remotevpn
match address 100
!
interface Loopback0
ip address 10.249.0.157 255.255.255.255
!
interface Tunnel0
ip address 10.249.6.98 255.255.255.252
ip pim sparse-mode
tunnel source 10.249.0.157
tunnel destination 10.249.254.1
!
interface fa0/0
ip address 10.249.52.129 255.255.255.192
ip pim sparse-mode
crypto map remotevpn
ip access-group 199 in
问题,
- 为什么存在loopback0?它是 GRE 能够
tunnel source 10.249.0.157在 Tunnel0 部分使用的“虚拟接口”吗? - 为什么loopback0 和tunnel0 具有不同的IP 子网?
- 此配置的第 2 阶段定义在哪里?
