# 라우터 IP 설정
R1(config)#int f0/0
R1(config-if)#ip add 192.168.204.254 255.255.255.0
R1(config)#no sh
#라우터 DHCP 설정(스위치 IP 받기)
R1(config)#int f0/0
R1(config-if)#ip add dhcp
R1(config-if)#no sh
#Syslog 설정
- Logging 설정 방법 참고
https://xoodongxoo.tistory.com/196
[Network | 보안] Syslog
네트워크 콘솔 로그, 모니터 로그, 버퍼 로그가 있다. # SYSLOG실시간으로 로깅 및 관리하는 것이 운영상 필요. 일반적으로 장비 내부 버퍼에다 로그를 저장 가능. 저장공간이 한정적이고 장비의
xoodongxoo.tistory.com
# ssh 설정
R1(config)#ip domain-name aws.com
R1(config)#crypto key generate rsa moduls 1024
R1(config)#username test password test
R1(config)#line vty 0 4
R1(config)#login local
R1(config)#transport input ssh
R1(config)#login local
# radius 서버 설정
R1(config)#aaa new-model
R1(config)#aaa authentication login default group radius local
R1(config)#radius-server host 192.168.104.100 auth-port 1812 key 502
R1(config)#ip radius source-interface f0/0
R1(config)#line vty 0 4
R1(config)#login local authen default
R1(config)#end
#DHCP & DNS 서버 설정
- DNS 서버 구축
https://xoodongxoo.tistory.com/98
[Linux] 캐싱 DNS Server 구축
#캐시 네임 서버 - 사용자들의 질의를 받아 DNS 정보를 조회하여 응답해주는 네임서버 > 캐시 DNS 서버 구축 1. 서비스에 필요한 패키지 찾기 -bind, bind-utils 2. 패키지 버전 확인 3.
xoodongxoo.tistory.com
- DHCP 서버 구축
https://xoodongxoo.tistory.com/140
[Linux] eve - DHCP 설정
#DHCP Server 설정# rpm -qa | grep dhcp# rpm -ql dhcp# yum -y remove dhcp*# yum -y install dhcp # yum -y install dhcp-devel# cd /usr/share/doc/dhcp*# cp dhcpd .conf.sample /etc/dhcpd.conf# vi /etc/dhcpd.conf # service dhcpd restart# ifconfig eth0# cat /va
xoodongxoo.tistory.com
# Site to Site 설정하기 (Win7) 에서 설정
https://xoodongxoo.tistory.com/199
'Network > Network[On-Premise]' 카테고리의 다른 글
[Network] 🚨중요 공지🚨 (0) | 2025.02.05 |
---|---|
[On-premise] 게이트웨이 이중화 (STP, VLAN) (0) | 2024.11.29 |
[On-Premise] 게이트웨이 이중화 (0) | 2024.11.28 |
[On-premise] STP / RSTP - (스패닝 트리 프로토콜) (0) | 2024.11.21 |
[On-premise] RIPv2 / EIGRP / 재분배 (0) | 2024.11.17 |