본문 바로가기

Enjoy IT/LINUX 심화.해킹등

칼리 리눅스 네트워크 설정 ( 고정IP 할당 )

칼리리눅스 ip설정 오류난다면 방법 2로 해보고 HostPC의 VM관련 서비스들을 실행시켜본다.





방법 1. 



아래 내용대로 해도 되지 않는다면 방법 2로 해보길 바람.


/etc/network/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 lo

iface lo inet loopback


auto eth0

iface eth0 inet static

address 211.169.200.151

gateway 211.169.200.129

netmask 255.255.255.128


-------------------------








DNS 서버 설정 

/etc/resolv.conf 

파일에

nameserver 8.8.8.8

을 추가해준다.


--------------------

domain localdomain

search localdomain

nameserver 8.8.8.8

nameserver 8.8.4.4



---------------


service networking restart      // centos랑은 다르게 networking restart. 오류난다면 재부팅하기.






방법 2.


방법1은 잘 되질 않는 경우가 많다.


ip값을 넣어주고 resolv.conf 파일을 아무리 수정해도 vmware를 재시작하면 다시 세팅이 소프트링크로 엉망으로 돌아가버리는 경우가 빈번하다.




ifconfig eth0 [바꿀 ip] netmask [바꿀 netmask] up

route add default gw [게이트웨이]

echo nameserver 8.8.8.8 > /etc/resolv.conf

service networking restart



이 명령어는 어지간하면 잘 작동한다.


이래도 인터넷이 되질 않는다면 VMware의 게이트웨이 설정과 맞질 않거나


Host PC의 VMware 관련 서비스들이 시작되지 않았을 경우가 대부분이다.