목표
목적을 구성하는 고정 IP 주소에서 데비안 리눅스 서버입니다.
데스크탑 설치의 경우network-manager
와 같은 GUI 도구를 사용하는 것이 좋습니다. 당신이 원하는 경우를 구성하는 네트워크 인터페이스를 통해 직접/etc/network/interfaces
network-manager
# systemctl stop NetworkManager.service# systemctl disable NetworkManager.service
영 시스템 및 소프트웨어 버전
- 영 시스템:데비안 월 9 일(스트레치)
요구사항
액세스 권한을 데비안 리눅스 시스템이 필요합니다.
어려움
쉬운
규칙
- #필요합 주어진 리눅스 명령어를 실행될 수 있도 루트 권한이 직접적으로 루트 사용자에 의해 또는 사용하의
sudo
명령 - $-필요로 주어진 리눅스 명령어를 실행할 정기적으로 권한이 없는 사용자
지침
사용 Static IP
기본적으로 다음을 찾을 수 있습니다 이내에 구성하는/etc/network/interfaces
source /etc/network/interfaces.d/*# The loopback network interfaceauto loiface lo inet loopback# The primary network interfaceallow-hotplug eth0iface eth0 inet dhcp
iface eth0 inet dhcp
iface eth0 inet static
/etc/network/interfaces
source /etc/network/interfaces.d/*# The loopback network interfaceauto loiface lo inet loopback# The primary network interfaceallow-hotplug eth0iface eth0 inet static
UAF 지구 물리학 연구소는 사이버 인프라 분석가 및 엔지니어 연구 팀에 합류하기 위해 숙련 된 Linux 시스템 분석가를 찾고 있습니다. 위치: 페어 뱅크스,알래스카,미국
적용이 지금
구성하는 IP 주소
이 단계에서,우리는 두가지 선택이있을 구성하는 방법에 고정 IP 주소에 대한 우리의eth0
네트워크 인터페이스입니다. 첫 번째 옵션은 ip 주소 구성을/etc/network/interfaces
/etc/network/interfaces
address 10.1.1.125 netmask 255.0.0.0 gateway 10.1.1.1
/etc/network/interfaces
파일을 찾아야 한 다음과 같습니다. 필요에 따라 IP 주소,넷 마스크 및 게이트웨이를 업데이트하십시오:
source /etc/network/interfaces.d/*# The loopback network interfaceauto loiface lo inet loopback# The primary network interfaceallow-hotplug eth0iface eth0 inet static address 10.1.1.125 netmask 255.0.0.0 gateway 10.1.1.1
/etc/network/interfaces.d/
디렉토리에 있습니다. networking
/etc/network/interfaces.d/
/etc/network/interfaces
의 일부로 포함됩니다.
임의의 파일 이름으로 새 네트워크 구성 파일을 만듭니다. eth0
eth0
IP 주소 구성을 포함합니다. 이를 위해 사용하는 텍스트 편집기에 대한 예 vim:
# cat /etc/network/interfaces.d/eth0iface eth0 inet static address 10.1.1.125 netmask 255.0.0.0 gateway 10.1.1.1
/etc/network/interfaces
# cat /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 interfaceauto loiface lo inet loopback# The primary network interfaceallow-hotplug eth0
정적 DNS server
을 구성할 정적 DNS 를 편집/etc/resolv.conf
파일의 IP 주소를 포함하의 선호하는nameserver
nameserver 8.8.8.8
/etc/network/interfaces
dns-nameservers 8.8.8.8 8.8.4.4
변경 내용을 적용
변경 사항을 적용하를 다시 시작하는 네트워크 daemon:
# service networking restart