linux

[Error] 칼리리눅스 네트워크 설정

chanchand 2023. 11. 1. 16:01
반응형

브라우저 접속이 안돼서 오류 메세지를 봤더니 네트워크 연결이 안되었다고 한다.

connect network adapter vmware

 

ifconfig
lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 4  bytes 240 (240.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 4  bytes 240 (240.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

 

이더넷이 연결되지 않은 것을 확인할 수 있다.

 

vi /etc/network/interfaces

위 경로의 파일에 아래 구문을 추가하면 된다.

auto eth0
iface eth0 inet dhcp

 

후에 ifconfig 명령어로 확인하면 설정된 것을 볼 수 있다.

└─# ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet -.-.-.-  netmask 255.255.255.0  broadcast -.-.-.-
        inet6 fe80::20c:29ff:fee4:bff2  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:e4:bf:f2  txqueuelen 1000  (Ethernet)
        RX packets 3913  bytes 4737204 (4.5 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 1941  bytes 343776 (335.7 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 4  bytes 240 (240.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 4  bytes 240 (240.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

그리고 인터넷 접속도 잘 된다.

반응형

'linux' 카테고리의 다른 글

sh 문법 (ing)  (0) 2023.12.24
systemctl 명령어  (0) 2023.12.23
$ 매개변수 (특수 변수)  (0) 2023.09.20
curl  (0) 2023.08.08
압축  (0) 2023.07.11