IP 주소 설정은 configure 명령어에서 설정할 수 있습니다.
LYSH@MyHostName# configure configure# ip add -h usage: ip add [-h] interface ip [gateway] positional arguments: interface Ethernet interface name ip IPv4/Subnet Mask or IPv6 address/prefix [gateway] IPv4 or IPv6 address optional arguments: -h, --help show this help message and exit
Basic Commands
configure# ip add eth0 192.168.0.3/24
[gateway]는 제외하고 ip를 설정할 수 있습니다.configure# ip add eth1 2000:4::40/64 2000:4::1
ipv6 및 gateway를 포함하여 설정합니다.
After Commands
ip add 명령어로 interface 설정이 완료되면 netplan apply
로 변경 사항을 적용할 수 있습니다.
해당 명령어를 실행하지 않은 경우 재부팅 전까지 변경된 interface는 적용되지 않습니다.
configure# netplan apply
설정한 interface 정보를 적용합니다. 실행결과는 성공/실패로 표시됩니다.
사용하지 않는 interface의 ip주소는 ip delete
명령어로 삭제합니다.
configure# ip delete eth0 192.168.0.3/24
eth0 인터페이스의 192.168.0.3/24 가 삭제됩니다.
ip 주소 삭제 명령어 이후 netplan apply
로 변경 사항을 적용할 수 있습니다.