Difference between revisions of "IPv6: Cisco: Static Routing Sedehana"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (Created page with "center|400px|thumb R1: Ethernet1/1 - ke Internet Ethernet1/2 - R2: Ethernet 1/1 Ethernet1/3 - LAN R2: Ethernet1/1 - R1: Ethernet1/2 Ethernet1/2 - LAN...") |
Onnowpurbo (talk | contribs) |
||
(6 intermediate revisions by the same user not shown) | |||
Line 16: | Line 16: | ||
enable | enable | ||
configure terminal | configure terminal | ||
+ | ipv6 unicast-routing | ||
interface ethernet1/1 | interface ethernet1/1 | ||
ip address dhcp | ip address dhcp | ||
Line 23: | Line 24: | ||
interface ethernet1/2 | interface ethernet1/2 | ||
ip address 172.16.1.1 255.255.255.252 | ip address 172.16.1.1 255.255.255.252 | ||
+ | ipv6 address 2001:172:16:1::1/64 | ||
no shutdown | no shutdown | ||
exit | exit | ||
interface ethernet1/3 | interface ethernet1/3 | ||
ip address 192.168.1.1 255.255.255.0 | ip address 192.168.1.1 255.255.255.0 | ||
+ | ipv6 address 2001:192:168:1::1/64 | ||
+ | no shutdown | ||
exit | exit | ||
ip route 192.168.2.0 255.255.255.0 172.16.1.2 | ip route 192.168.2.0 255.255.255.0 172.16.1.2 | ||
+ | ipv6 route 2001:192:168:2::/64 2001:172:16:1::2 | ||
exit | exit | ||
− | |||
R2: | R2: | ||
Line 36: | Line 40: | ||
enable | enable | ||
config terminal | config terminal | ||
− | + | ipv6 unicast-routing | |
+ | interface ethernet1/1 | ||
ip address 172.16.1.2 255.255.255.252 | ip address 172.16.1.2 255.255.255.252 | ||
+ | ipv6 address 2001:172:16:1::2/64 | ||
no shutdown | no shutdown | ||
exit | exit | ||
interface ethernet1/2 | interface ethernet1/2 | ||
ip address 192.168.2.1 255.255.255.0 | ip address 192.168.2.1 255.255.255.0 | ||
+ | ipv6 address 2001:192:168:2::1/64 | ||
+ | no shutdown | ||
exit | exit | ||
ip route 192.168.1.0 255.255.255.0 172.16.1.1 | ip route 192.168.1.0 255.255.255.0 172.16.1.1 | ||
ip route 0.0.0.0 0.0.0.0 172.16.1.1 | ip route 0.0.0.0 0.0.0.0 172.16.1.1 | ||
+ | ipv6 route 2001:192:168:1::/64 2001:172:16:1::1 | ||
exit | exit | ||
− | |||
Line 54: | Line 62: | ||
ping 192.168.2.1 | ping 192.168.2.1 | ||
+ | ping ipv6 2001:192:168:2::1 | ||
+ | ping 2001:192:168:2::1 | ||
R2: | R2: | ||
ping 192.168.1.1 | ping 192.168.1.1 | ||
+ | ping ipv6 2001:192:168:1::1 | ||
+ | ping 2001:192:168:1::1 | ||
+ | Cek | ||
+ | |||
+ | show ipv6 route | ||
+ | show ipv6 route static | ||
==Setting Client== | ==Setting Client== | ||
Line 64: | Line 80: | ||
LAN 1 Client: | LAN 1 Client: | ||
− | ip 192.168.1.2 | + | ip 192.168.1.2/24 192.168.1.1 |
− | + | ip 2001:192:168:1::200/64 2001:192:168:1::1 | |
+ | ping 2001:192:168:1::1 | ||
+ | ping 2001:192:168:2::1 | ||
+ | ping 2001:192:168:2::200 | ||
LAN 2 Client: | LAN 2 Client: | ||
− | ip 192.168.2.2 | + | ip 192.168.2.2/24 192.168.2.1 |
− | + | ip 2001:192:168:2::200/64 2001:192:168:2::1 | |
− | |||
+ | ping 2001:192:168:2::1 | ||
+ | ping 2001:192:168:1::1 | ||
+ | ping 2001:192:168:1::200 | ||
==Pranala Menarik== | ==Pranala Menarik== | ||
Line 79: | Line 100: | ||
* [[TCP/IP: Advanced Routing]] | * [[TCP/IP: Advanced Routing]] | ||
* [[Quagga]] | * [[Quagga]] | ||
+ | * [[VyOS]] | ||
* [[Mikrotik]] | * [[Mikrotik]] | ||
* [[Cisco]] | * [[Cisco]] | ||
* [[Juniper]] | * [[Juniper]] | ||
− | * [[ | + | * [[BIRD1]] |
+ | * [[BIRD2]] | ||
* [[IPv6]] | * [[IPv6]] | ||
Line 89: | Line 112: | ||
* [[IPv6: Advanced Routing]] | * [[IPv6: Advanced Routing]] | ||
* [[IPv6: Quagga]] | * [[IPv6: Quagga]] | ||
+ | * [[IPv6: VyOS]] | ||
* [[IPv6: Mikrotik]] | * [[IPv6: Mikrotik]] | ||
* [[IPv6: Cisco]] | * [[IPv6: Cisco]] | ||
* [[IPv6: Juniper]] | * [[IPv6: Juniper]] | ||
− | * [[IPv6: | + | * [[IPv6: BIRD1]] |
+ | * [[IPv6: BIRD2]] | ||
* [[IPv6]] | * [[IPv6]] |
Latest revision as of 09:50, 22 January 2019
R1:
Ethernet1/1 - ke Internet Ethernet1/2 - R2: Ethernet 1/1 Ethernet1/3 - LAN
R2:
Ethernet1/1 - R1: Ethernet1/2 Ethernet1/2 - LAN
R1:
enable configure terminal ipv6 unicast-routing interface ethernet1/1 ip address dhcp ip dhcp client request no shutdown exit interface ethernet1/2 ip address 172.16.1.1 255.255.255.252 ipv6 address 2001:172:16:1::1/64 no shutdown exit interface ethernet1/3 ip address 192.168.1.1 255.255.255.0 ipv6 address 2001:192:168:1::1/64 no shutdown exit ip route 192.168.2.0 255.255.255.0 172.16.1.2 ipv6 route 2001:192:168:2::/64 2001:172:16:1::2 exit
R2:
enable config terminal ipv6 unicast-routing interface ethernet1/1 ip address 172.16.1.2 255.255.255.252 ipv6 address 2001:172:16:1::2/64 no shutdown exit interface ethernet1/2 ip address 192.168.2.1 255.255.255.0 ipv6 address 2001:192:168:2::1/64 no shutdown exit ip route 192.168.1.0 255.255.255.0 172.16.1.1 ip route 0.0.0.0 0.0.0.0 172.16.1.1 ipv6 route 2001:192:168:1::/64 2001:172:16:1::1 exit
Test
R1:
ping 192.168.2.1 ping ipv6 2001:192:168:2::1 ping 2001:192:168:2::1
R2:
ping 192.168.1.1 ping ipv6 2001:192:168:1::1 ping 2001:192:168:1::1
Cek
show ipv6 route show ipv6 route static
Setting Client
LAN 1 Client:
ip 192.168.1.2/24 192.168.1.1 ip 2001:192:168:1::200/64 2001:192:168:1::1
ping 2001:192:168:1::1 ping 2001:192:168:2::1 ping 2001:192:168:2::200
LAN 2 Client:
ip 192.168.2.2/24 192.168.2.1 ip 2001:192:168:2::200/64 2001:192:168:2::1
ping 2001:192:168:2::1 ping 2001:192:168:1::1 ping 2001:192:168:1::200
Pranala Menarik