CCNA / CCNP Quick Configs - Introduction to Static Routes (French)

Опубликовано: 10 Июль 2026
на канале: CITS-TRAINING
874
12

show ip interface brief
show ip route
show interface ip
show ip arp
show ip route static

Router 1
==========

interface GigabitEthernet0/0
no shutdown
description WAN
ip address 20.1.1.1 255.255.255.252

interface GigabitEthernet0/2
no shutdown
description LAN
ip address 10.1.1.1 255.255.255.0

ip route 0.0.0.0 0.0.0.0 20.1.1.2


Router 2
=========

interface GigabitEthernet0/1
no shutdown
description WAN
ip address 30.1.1.1 255.255.255.252

interface GigabitEthernet0/2
no shutdown
description LAN
ip address 192.168.1.1 255.255.255.0

ip route 0.0.0.0 0.0.0.0 30.1.1.2

Internet Router
===============

interface GigabitEthernet0/0
no shutdown
ip address 20.1.1.2 255.255.255.252

interface GigabitEthernet0/1
no shutdown
ip address 30.1.1.2 255.255.255.252

ip route 10.1.1.0 255.255.255.0 20.1.1.1
ip route 192.168.1.0 255.255.255.0 30.1.1.1