Network/Network

Network - 토폴로지 구성 (VLAN)

잇(IT) 2022. 4. 11. 14:47
728x90

- 이번 포스팅에서도 마찬가지로 네트워크 토포로지를 직접 구성해 볼 것이다.


- 조건

 

1. 서버는 네트워크 첫번째 IP 사용

2. PC는 네트워크 두번째 IP 사용

3. 게이트웨이는 네트워크 마지막 IP 사용

4. DNS는 서울 서버의 IP 사용

5. Static Routing 사용

6. 라우터 기본 설정 전부 할 것


- 주어진 네트워크 대역

 

11.10.13.0/23

 

- Router 설정

 

[Seoul Router] 

enable
configure terminal
hostname Seoul
enable password bis
enable secret bis1
no ip domain-lookup
service password-encryption
lin console 0
password bis2
login
exec-timeout 0 0
logging synchronous
exit
int fa0/1
ip ad 11.10.12.254 255.255.255.0
no shut
exit
int fa0/0
ip ad 11.10.13.234 255.255.255.248
no shut
exit
ip route 11.10.13.0 255.255.255.128 11.10.13.226
ip route 11.10.13.128 255.255.255.192 11.10.13.235
ip route 11.10.13.224 255.255.255.248 11.10.13.233
ip route 11.10.13.192 255.255.255.224 11.10.13.225
do write



[Busan Router]

enable
configure terminal
hostname Busan
enable password bis
enable secret bis1
no ip domain-lookup
service password-encryption
lin console 0
password bis2
login
exec-timeout 0 0
logging synchronous
exit
int fa0/1
ip ad 11.10.13.126 255.255.255.128
no shut
exit
int fa0/0
ip ad 11.10.13.226 255.255.255.248
no shut
exit
ip route 11.10.12.0 255.255.255.0 11.10.13.234
ip route 11.10.13.128 255.255.255.192 11.10.13.235
ip route 11.10.13.232 255.255.255.248 11.10.13.227
ip route 11.10.13.192 255.255.255.224 11.10.13.225
do write



[Daegu Router]

enable
configure terminal
hostname Daegu
enable password bis
enable secret bis1
no ip domain-lookup
service password-encryption
lin console 0
password bis2
login
exec-timeout 0 0
logging synchronous
exit
int fa0/1
ip ad 11.10.13.190 255.255.255.192
no shut
exit
int fa0/0
ip ad 11.10.13.235 255.255.255.248
no shut
exit
ip route 11.10.12.0 255.255.255.0 11.10.13.234
ip route 11.10.13.0 255.255.255.128 11.10.13.226
ip route 11.10.13.224 255.255.255.248 11.10.13.233
ip route 11.10.13.192 255.255.255.224 11.10.13.225
do write



[Jeju Router]

enable
configure terminal
hostname Jeju
enable password bis
enable secret bis1
no ip domain-lookup
service password-encryption
lin console 0
password bis2
login
exec-timeout 0 0
logging synchronous
exit
int fa0/1
ip ad 11.10.13.222 255.255.255.224
no shut
exit
int fa0/0
ip ad 11.10.13.225 255.255.255.248
no shut
exit
ip route 11.10.12.0 255.255.255.0 11.10.13.234
ip route 11.10.13.0 255.255.255.128 11.10.13.226
ip route 11.10.13.232 255.255.255.248 11.10.13.227
ip route 11.10.13.128 255.255.255.192 11.10.13.235
do write

 

 


[Vlan Router]

enable
configure terminal
hostname Vlan_1
enable password bis
enable secret bis1
no ip domain-lookup
service password-encryption
lin console 0
password bis2
login
exec-timeout 0 0
logging synchronous
exit
int fa0/1
ip ad 11.10.13.233 255.255.255.248
no shut
exit
int fa0/0
ip ad 11.10.13.227 255.255.255.248
no shut
exit
ip route 11.10.12.0 255.255.255.0 11.10.13.234
ip route 11.10.13.0 255.255.255.128 11.10.13.226
ip route 11.10.13.192 255.255.255.224 11.10.13.225
ip route 11.10.13.128 255.255.255.192 11.10.13.235
do write

 

 

728x90