ā06-27-2024 05:33 AM - edited ā06-27-2024 05:56 AM
Dear Community,
I have I lab setup as attached where R10-R3-R4-R5-R6-R11
BGP routes for R6 routes appear in the routing table of R3 and vice-versa. R5 does the route redistribution between BGP 65200 and EIGRP 100 and vice versa. However, when I try to ping the route at R6 from R3 I can't reach that destination the reverse is also true,why?
================show ip route of R3=====================
R3#show ip route | b Gat
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 5 subnets, 3 masks
C 10.12.1.0/24 is directly connected, GigabitEthernet0/0
L 10.12.1.1/32 is directly connected, GigabitEthernet0/0
S 10.13.1.0/24 [1/0] via 10.12.1.2
S 10.14.1.0/24 [1/0] via 10.12.1.2
B 10.14.1.0/30 [200/0] via 10.13.1.2, 01:05:46
192.168.3.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.3.0/24 is directly connected, GigabitEthernet0/1
L 192.168.3.3/32 is directly connected, GigabitEthernet0/1
B 192.168.6.0/24 [200/3072] via 10.14.1.2, 00:55:38
R3#
================show ip route of R6=====================
R6#show ip route | b Gat
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.14.1.0/30 is directly connected, GigabitEthernet0/2
L 10.14.1.2/32 is directly connected, GigabitEthernet0/2
D EX 192.168.3.0/24
[170/25600512] via 10.14.1.1, 00:58:29, GigabitEthernet0/2
192.168.6.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.6.0/24 is directly connected, GigabitEthernet0/0
L 192.168.6.6/32 is directly connected, GigabitEthernet0/0
R6#
I read somewhere that "BGP routers do not
have to be in the data plane (path) to exchange prefixes, but all routers in the data path need
to know all the routes that will be forwarded through them."
So I expected this lab to work but something is wrong, kingly review experts!
Regards,
Isaac.
Solved! Go to Solution.
ā06-27-2024 11:35 AM - edited ā06-27-2024 11:55 AM
router bgp 65200
bgp log-neighbor-changes
no bgp default ipv4-unicast
neighbor 192.168.1.1 remote-as 65200
neighbor 192.168.1.1 update source interface tunnel 100
!
address-family ipv4
bgp redistribute-internal
network 192.168.1.0 mask 255.255.255.252
redistribute eigrp 100
neighbor 192.168.1.1 activate
neighbor 192.168.1.1 update source interface tunnel 100
neighbor 192.168.1.1 next-hop-self
neighbor 192.168.1.1 soft-reconfiguration inbound
router eigrp 100
default-metric 100 1 255 1 1500
network 10.14.1.0 0.0.0.3
network 192.168.1.0 0.0.0.255
redistribute bgp 65200 metric 100 1 255 1 1500
ā06-27-2024 11:36 AM
router bgp 65200
bgp log-neighbor-changes
network 192.168.1.0 mask 255.255.255.252
network 192.168.3.0
neighbor 192.168.1.2 remote-as 65200
neighbor 192.168.1.2 update source interface tunnel 100
neighbor 192.168.1.2 next-hop-self
neighbor 192.168.1.2 soft-reconfiguration inbound
ā06-27-2024 11:56 AM - edited ā06-27-2024 11:59 AM
bgp session not forming yet
============R3==========
R3(config-router)#do sh run | s bgp
router bgp 65200
bgp log-neighbor-changes
network 192.168.3.0
neighbor 192.168.1.2 remote-as 65200
neighbor 192.168.1.2 update-source Tunnel100
neighbor 192.168.1.2 next-hop-self
neighbor 192.168.1.2 soft-reconfiguration inbound
R3(config-router)#do sh ip bgp summ | b N
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
192.168.1.2 4 652R5(config-router-af)#do sh run | s bgp
redistribute bgp 65200 metric 100 1 255 1 1500
router bgp 65200
bgp log-neighbor-changes
no bgp default ipv4-unicast
neighbor 192.168.1.1 remote-as 65200
neighbor 192.168.1.1 update-source Tunnel100
!
address-family ipv4
bgp redistribute-internal
redistribute eigrp 100
neighbor 192.168.1.1 activate
neighbor 192.168.1.1 next-hop-self
neighbor 192.168.1.1 soft-reconfiguration inbound
exit-address-family
R5(config-router-af)#do sh ip bgp summ | b N
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
192.168.1.1 4 65200 0 0 1 0 0 never Idle
R5(config-router-af)#do wr
==================R5================
R5(config-router-af)#do sh run | s bgp
redistribute bgp 65200 metric 100 1 255 1 1500
router bgp 65200
bgp log-neighbor-changes
no bgp default ipv4-unicast
neighbor 192.168.1.1 remote-as 65200
neighbor 192.168.1.1 update-source Tunnel100
!
address-family ipv4
bgp redistribute-internal
redistribute eigrp 100
neighbor 192.168.1.1 activate
neighbor 192.168.1.1 next-hop-self
neighbor 192.168.1.1 soft-reconfiguration inbound
exit-address-family
R5(config-router-af)#do sh ip bgp summ | b N
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
192.168.1.1 4 65200 0 0 1 0 0 never Idle
R5(config-router-af)#do wr
ā06-27-2024 11:56 AM
do above change and now ping from tunnel IP to 192.168.6.x
MHM
ā06-27-2024 12:08 PM - edited ā06-27-2024 12:15 PM
not reachable yet
R3#ping 192.168.6.6 source tunnel 100
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.6.6, timeout is 2 seconds:
Packet sent with a source address of 192.168.1.1
.....
Success rate is 0 percent (0/5)
R3#sh run int tun100
Building configuration...
Current configuration : 131 bytes
!
interface Tunnel100
ip address 192.168.1.1 255.255.255.252
tunnel source GigabitEthernet0/1
tunnel destination 10.13.1.2
end
R3#ping 192.168.6.6 source 192.168.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.6.6, timeout is 2 seconds:
Packet sent with a source address of 192.168.1.1
.....
Success rate is 0 percent (0/5)
R3#
======================
R3#ping 192.168.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/2 ms
R3#sh ip bgp | b N
RPKI validation codes: V valid, I invalid, N Not found
Network Next Hop Metric LocPrf Weight Path
*> 192.168.3.0 0.0.0.0 0 32768 i
R3#
ā06-27-2024 12:19 PM
let me lab it
give me 30-60 min
MHM
ā06-27-2024 12:50 PM
Only one thing I see make bgp not work'
In R5 you disable bgp default ipv4 unicast
And then config addresses family but you dont neighbor remote as under it ??
When you disable bgp default ipv4 unicast you can not add any neighbor except under address family.
Maybe that case you face.
Anyway I run lab and share result with you.
MHM
ā06-27-2024 12:45 PM
R3#show run
R3#show running-config
Building configuration...
Current configuration : 1360 bytes
!
version 15.2
service timestamps debug datetime msec
service timestamps log datetime msec
!
hostname R3
!
boot-start-marker
boot-end-marker
!
!
!
no aaa new-model
no ip icmp rate-limit unreachable
ip cef
!
!
!
!
!
!
no ip domain lookup
no ipv6 cef
!
!
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
ip tcp synwait-time 5
!
!
!
!
!
!
!
!
!
!
!
!
interface Tunnel0
ip address 5.0.0.3 255.255.255.0
tunnel source FastEthernet0/0
tunnel destination 20.0.0.5
!
interface FastEthernet0/0
ip address 10.0.0.3 255.255.255.0
duplex full
!
interface FastEthernet1/0
no ip address
shutdown
speed auto
duplex auto
!
interface FastEthernet1/1
no ip address
shutdown
speed auto
duplex auto
!
interface FastEthernet2/0
no ip address
shutdown
speed auto
duplex auto
!
interface FastEthernet2/1
no ip address
shutdown
speed auto
duplex auto
!
router bgp 100
bgp log-neighbor-changes
bgp redistribute-internal
neighbor 5.0.0.5 remote-as 100
neighbor 5.0.0.5 update-source Tunnel0
neighbor 5.0.0.5 next-hop-self
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
ip route 20.0.0.0 255.255.255.0 10.0.0.4
!
!
!
!
control-plane
!
!
line con 0
exec-timeout 0 0
privilege level 15
logging synchronous
stopbits 1
line aux 0
exec-timeout 0 0
privilege level 15
logging synchronous
stopbits 1
line vty 0 4
login
!
!
end
R4#show run
R4#show running-config
Building configuration...
Current configuration : 1041 bytes
!
version 15.2
service timestamps debug datetime msec
service timestamps log datetime msec
!
hostname R4
!
boot-start-marker
boot-end-marker
!
!
!
no aaa new-model
no ip icmp rate-limit unreachable
ip cef
!
!
!
!
!
!
no ip domain lookup
no ipv6 cef
!
!
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
ip tcp synwait-time 5
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
ip address 10.0.0.4 255.255.255.0
duplex full
!
interface FastEthernet1/0
no ip address
shutdown
speed auto
duplex auto
!
interface FastEthernet1/1
ip address 20.0.0.4 255.255.255.0
speed auto
duplex auto
!
interface FastEthernet2/0
no ip address
shutdown
speed auto
duplex auto
!
interface FastEthernet2/1
no ip address
shutdown
speed auto
duplex auto
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
!
!
!
control-plane
!
!
line con 0
exec-timeout 0 0
privilege level 15
logging synchronous
stopbits 1
line aux 0
exec-timeout 0 0
privilege level 15
logging synchronous
stopbits 1
line vty 0 4
login
!
!
end
R5# show run
R5# show running-config
Building configuration...
Current configuration : 1441 bytes
!
version 15.2
service timestamps debug datetime msec
service timestamps log datetime msec
!
hostname R5
!
boot-start-marker
boot-end-marker
!
!
!
no aaa new-model
no ip icmp rate-limit unreachable
ip cef
!
!
!
!
!
!
no ip domain lookup
no ipv6 cef
!
!
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
ip tcp synwait-time 5
!
!
!
!
!
!
!
!
!
!
!
!
interface Tunnel0
ip address 5.0.0.5 255.255.255.0
tunnel source FastEthernet1/1
tunnel destination 10.0.0.3
!
interface FastEthernet0/0
ip address 30.0.0.5 255.255.255.0
duplex full
!
interface FastEthernet1/0
no ip address
shutdown
speed auto
duplex auto
!
interface FastEthernet1/1
ip address 20.0.0.5 255.255.255.0
speed auto
duplex auto
!
interface FastEthernet2/0
no ip address
shutdown
speed auto
duplex auto
!
interface FastEthernet2/1
no ip address
shutdown
speed auto
duplex auto
!
!
router eigrp 30
network 5.0.0.0 0.0.0.255
network 30.0.0.0 0.0.0.255
!
router bgp 100
bgp log-neighbor-changes
redistribute eigrp 30
neighbor 5.0.0.3 remote-as 100
neighbor 5.0.0.3 update-source Tunnel0
neighbor 5.0.0.3 next-hop-self
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
ip route 10.0.0.0 255.255.255.0 20.0.0.4
!
!
!
!
control-plane
!
!
line con 0
exec-timeout 0 0
privilege level 15
logging synchronous
stopbits 1
line aux 0
exec-timeout 0 0
privilege level 15
logging synchronous
stopbits 1
line vty 0 4
login
!
!
end
R6#show run
R6#show running-config
Building configuration...
Current configuration : 1224 bytes
!
! Last configuration change at 22:41:32 UTC Thu Jun 27 2024
!
version 15.2
service timestamps debug datetime msec
service timestamps log datetime msec
!
hostname R6
!
boot-start-marker
boot-end-marker
!
!
!
no aaa new-model
no ip icmp rate-limit unreachable
ip cef
!
!
!
!
!
!
no ip domain lookup
no ipv6 cef
!
!
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
ip tcp synwait-time 5
!
!
!
!
!
!
!
!
!
!
!
!
interface Loopback0
ip address 6.6.6.6 255.255.255.255
!
interface FastEthernet0/0
ip address 30.0.0.6 255.255.255.0
duplex full
!
interface FastEthernet1/0
no ip address
shutdown
speed auto
duplex auto
!
interface FastEthernet1/1
no ip address
shutdown
speed auto
duplex auto
!
interface FastEthernet2/0
no ip address
shutdown
speed auto
duplex auto
!
interface FastEthernet2/1
no ip address
shutdown
speed auto
duplex auto
!
!
router eigrp 30
network 6.6.6.6 0.0.0.0
network 30.0.0.0 0.0.0.255
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
!
!
!
control-plane
!
!
line con 0
exec-timeout 0 0
privilege level 15
logging synchronous
stopbits 1
line aux 0
exec-timeout 0 0
privilege level 15
logging synchronous
stopbits 1
line vty 0 4
login
!
!
end
ā06-27-2024 02:01 PM
Apologies, I made an error on the tunnel source interface configuration, it should have been g0/0 instead of g0/1 on R3 as tunnel source!
The bgp adjacencies have come up! and I can see all the routes in the routing tables.
However, I still can't ping 192.168.6.6 from R3 and 192.168.3.3 from R6.
===================R3==========
R3(config-if)#do sh ip route | b Gat
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 4 subnets, 3 masks
C 10.12.1.0/24 is directly connected, GigabitEthernet0/0
L 10.12.1.1/32 is directly connected, GigabitEthernet0/0
S 10.13.1.0/30 [1/0] via 10.12.1.2
S 10.14.1.0/30 [1/0] via 10.12.1.2
192.168.1.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.1.0/30 is directly connected, Tunnel100
L 192.168.1.1/32 is directly connected, Tunnel100
192.168.3.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.3.0/24 is directly connected, GigabitEthernet0/1
L 192.168.3.3/32 is directly connected, GigabitEthernet0/1
B 192.168.6.0/24 [200/3072] via 192.168.1.2, 00:16:31
R3(config-if)#
=============R3 full show run==========
R3#sh run
Building configuration...
Current configuration : 3456 bytes
!
! Last configuration change at 20:48:15 UTC Thu Jun 27 2024
!
version 15.6
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R3
!
boot-start-marker
boot-end-marker
!
!
!
no aaa new-model
ethernet lmi ce
!
!
!
mmi polling-interval 60
!
!
ip cef
no ipv6 cef
!
multilink bundle-name authenticated
!
!
!
!
!
redundancy
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface Loopback0
no ip address
!
!
interface Tunnel100
ip address 192.168.1.1 255.255.255.252
tunnel source GigabitEthernet0/0
tunnel destination 10.13.1.2
!
interface GigabitEthernet0/0
ip address 10.12.1.1 255.255.255.0
duplex auto
speed auto
media-type rj45
!
interface GigabitEthernet0/1
ip address 192.168.3.3 255.255.255.0
duplex auto
speed auto
media-type rj45
!
interface GigabitEthernet0/2
no ip address
shutdown
duplex auto
speed auto
media-type rj45
!
!
interface GigabitEthernet0/3
no ip address
shutdown
duplex auto
speed auto
media-type rj45
!
router bgp 65200
bgp log-neighbor-changes
network 192.168.3.0
neighbor 192.168.1.2 remote-as 65200
neighbor 192.168.1.2 update-source Tunnel100
neighbor 192.168.1.2 next-hop-self
neighbor 192.168.1.2 soft-reconfiguration inbound
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
ip route 10.13.1.0 255.255.255.252 10.12.1.2
ip route 10.14.1.0 255.255.255.252 10.12.1.2
!
!
!
!
control-plane
!
!
control-plane
!
banner exec ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
banner incoming ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
banner login ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of th
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
!
line con 0
logging synchronous
line aux 0
line vty 0 4
login
transport input none
!
no scheduler allocate
!
end
R3#
R3#
=================R5 full show run======================
R5(config)#do sh run
Building configuration...
Current configuration : 4069 bytes
!
! Last configuration change at 18:54:50 UTC Thu Jun 27 2024
!
version 15.6
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R5
!
boot-start-marker
boot-end-marker
!
!
!
no aaa new-model
ethernet lmi ce
!
!
!
!
!
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
!
!
!
!
!
!
!
!
!
!
!
no ip domain lookup
ip cef
no ipv6 cef
!
multilink bundle-name authenticated
!
!
!
!
!
redundancy
!
!
!
!
!
!
!
interface Loopback0
ip address 192.168.5.1 255.255.255.255
!
interface Tunnel100
ip address 192.168.1.2 255.255.255.252
tunnel source GigabitEthernet0/1
tunnel destination 10.12.1.1
!
interface GigabitEthernet0/0
no ip address
shutdown
duplex auto
speed auto
media-type rj45
!
interface GigabitEthernet0/1
ip address 10.13.1.2 255.255.255.252
duplex auto
speed auto
media-type rj45
!
interface GigabitEthernet0/2
ip address 10.14.1.1 255.255.255.252
duplex auto
speed auto
media-type rj45
!
!
interface GigabitEthernet0/3
no ip address
shutdown
duplex auto
speed auto
media-type rj45
!
!
router eigrp 100
default-metric 100 1 255 1 1500
network 10.14.1.0 0.0.0.3
redistribute bgp 65200 metric 100 1 255 1 1500
!
router bgp 65200
bgp log-neighbor-changes
no bgp default ipv4-unicast
neighbor 192.168.1.1 remote-as 65200
neighbor 192.168.1.1 update-source Tunnel100
!
address-family ipv4
bgp redistribute-internal
redistribute eigrp 100
neighbor 192.168.1.1 activate
neighbor 192.168.1.1 next-hop-self
neighbor 192.168.1.1 soft-reconfiguration inbound
exit-address-family
!
ip forward-protocol nd
!
!
!
no ip http server
no ip http secure-server
ip route 10.12.1.0 255.255.255.0 10.13.1.1
!
!
ip prefix-list CCNP seq 5 permit 192.168.3.1/32
!
route-map CCIE deny 10
match ip address 10
!
route-map CCIE permit 20
match ip address 20
!
route-map CCIE permit 30
!
!
!
access-list 10 permit 10.14.1.0 0.0.0.3 log
access-list 20 permit any log
!
control-plane
!
banner exec ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
banner incoming ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. * Cisco in writing. *
**************************************************************************^C
banner login ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
!
line con 0
logging synchronous
line aux 0
line vty 0 4
login
transport input none
!
no scheduler allocate
!
end
R5(config)#
R5#
==================show ip route R5===============
R5#show ip route | b Gat
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 5 subnets, 3 masks
S 10.12.1.0/24 [1/0] via 10.13.1.1
C 10.13.1.0/30 is directly connected, GigabitEthernet0/1
L 10.13.1.2/32 is directly connected, GigabitEthernet0/1
C 10.14.1.0/30 is directly connected, GigabitEthernet0/2
L 10.14.1.1/32 is directly connected, GigabitEthernet0/2
192.168.1.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.1.0/30 is directly connected, Tunnel100
L 192.168.1.2/32 is directly connected, Tunnel100
B 192.168.3.0/24 [200/0] via 192.168.1.1, 00:24:01
192.168.5.0/32 is subnetted, 1 subnets
C 192.168.5.1 is directly connected, Loopback0
D 192.168.6.0/24 [90/3072] via 10.14.1.2, 01:03:29, GigabitEthernet0/2
R5#
R6#traceroute 192.168.6.1
Type escape sequence to abort.
Tracing the route to 192.168.6.1
VRF info: (vrf in name/id, vrf out name/id)
1 * * *
2 * *
R6#
R3#traceroute 192.168.6.6
Type escape sequence to abort.
Tracing the route to 192.168.6.6
VRF info: (vrf in name/id, vrf out name/id)
1 192.168.1.2 9 msec 12 msec 5 msec
2 * * *
3 * * *
4 *
R3#
Also why did we have to use GRE or MPLS to make this work? "BGP routers do not
have to be in the data plane (path) to exchange prefixes, but all routers in the data path need
to know all the routes that will be forwarded through them"-From some book
Thanks for your patience!
ā06-27-2024 02:08 PM
It work now everything is OK?
MHM
ā06-28-2024 12:09 AM
not yet, from R5 I can ping 192.168.6.6 and 192.168.3.3 but from 192.168.3.3 can't reach 192.168.6.6. I have shared the configs in my previous post. Thanks for your patience.
ā06-28-2024 01:18 AM
Yes I see but you dont specify source in ping
You need to specify source in ping and it must be ip known by R6 and for that use tunnel IP
MHM
ā06-28-2024 05:11 AM
Correct! I can now reach 192.168.6.6 from 192.168.3.3 with source pinging!
R3#ping 192.168.6.6 source 192.168.3.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.6.6, timeout is 2 seconds:
Packet sent with a source address of 192.168.3.3
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 2/2/3 ms
R3#
Thank you!
ā06-28-2024 05:20 AM
You are so welcome
MHM
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide