[Cisco Packet Tracer] EIGRP 를 이용한 라우터 3대 구성
10.10.10.10에서 10.10.20.10과 10.10.30.10으로 핑테스트한 결과성공적이다
R1족보
enable
conf t
hostname r1
interface s2/0
ip address 192.168.0.1 255.255.255.0
clock rate 56000
no shutdown
exit
interface f0/0
ip address 10.10.10.254 255.255.255.0
no shutdown
exit
router eigrp 150
no auto-summary
network 192.168.0.0
network 10.10.10.0 0.0.0.255
end
wr me
R2족보
enable
conf t
hostname r2
interface s2/0
ip address 192.168.0.2 255.255.255.0
clock rate 56000
no shutdown
exit
interface s3/0
ip address 192.168.100.1 255.255.255.0
clock rate 56000
no shutdown
exit
interface f0/0
ip address 10.10.20.254 255.255.255.0
no shutdown
exit
router eigrp 150
no auto-summary
network 192.168.0.0
network 192.168.100.0
network 10.10.20.0 0.0.0.255
end
wr me
R3족보
enable
conf t
hostname r1
interface s2/0
ip address 192.168.100.2 255.255.255.0
clock rate 56000
no shutdown
exit
interface f0/0
ip address 10.10.30.254 255.255.255.0
no shutdown
exit
router eigrp 150
no auto-summary
network 192.168.100.0
network 10.10.30.0 0.0.0.255
end
wr me