- KaliLinux 네트워크 설정 시나리오
네트워크 설정은 static 하게 설정한다. (기존의 설정은 dhcp 되어 있다.)
각 NIC의 설정 정보는 다음과 같다.
eth0(static)
- IP/Netmask : 192.168.10.50/255.255.255.0
- Network : 192.168.10.0
- Gateway : 192.168.10.2
- Broadcast : 192.168.10.255
eth1(static)
- IP/Netmask : 192.168.20.50/255.255.255.0
- Network : 192.168.20.0
- Broadcast : 192.168.20.255
DNS Server 지정하는 부분
- DNS1 : 168.126.63.1
[참고] Redhat / Debian
Redhat Debian
# /sbin/ifconfig # /sbin/ifconfig
# /bin/netstat -nr # /bin/netstat -nr
# cat /etc/resolv.conf # cat /etc/resolv.conf
[설정]
1. KaliLinux 서버 poweroff
2. NIC 카드 추가 ( NAT )
3. 서버 on
4. 설정
# ifconfig
DHCP 에서 받아오기때문에 IP가 다 지정되어 있다.
# cd /etc/network
# ls
# vi interfaces
|
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto eth0 eth1 iface eth0 inet static address 192.168.17.50 netmask 255.255.255.0 geteway 192.168.17.2 iface eth1 inet static address 192.168.27.50 netmask 255.255.255.0 |
|
# cat /etc/host.conf
|
multi on |
|
# vi /etc/resolv.conf
|
domain example.com search example.com nameserver 168.126.63.1 |
|
# service networking restart
# ifconfig
-> IP 확인
(주의) eth1이 변경되지 않을 경우
# ifdown eth1
# ifup eth1
# ifconfig
# netstat -nr
|
Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface 0.0.0.0 192.168.17.2 0.0.0.0 UG 0 0 0 eth0 192.168.17.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 192.168.27.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1 |
|
(주의) default router IP 설정이 없을 경우
# route add default gw 192.168.17.2
# netstat -nr
# nslookup www.daum.net
'Security > 설정' 카테고리의 다른 글
Kali Linux 2017.1 VMware Tools 설치 방법 (0) | 2017.10.17 |
---|---|
칼리리눅스 한글폰트 문제 해결 (0) | 2017.10.08 |
칼리리눅스(Kali Linux) 설치하기 (0) | 2017.10.08 |
환경 구축 (0) | 2017.09.25 |