ip4와 ipv4 주소의 차이점, nmcli?

ip4와 ipv4 주소의 차이점, nmcli?

nmcli를 사용하여 새 인터페이스를 생성하는 경우 ipv4.addresses 및 ip4 매개변수를 사용하여 IP 주소를 설정할 수 있습니다.

이것들 사이에 차이점이 있나요?

nmcli con add ifname ens192 con-name ens192 type ethernet ipv4.addresses 192.168.0.10/24

그리고

nmcli con add ifname ens192 con-name ens192 type ethernet ip4 192.168.0.10/24

답변1

nmcli매뉴얼 에서 :

Table 25. IPv4 options
┌──────┬────────────────┬────────────────────────┐
│Alias │ Property       │ Note                   │
├──────┼────────────────┼────────────────────────┤
│ip4   │ ipv4.addresses │ The alias is           │
│      │ ipv4.method    │ equivalent to the      │
│      │                │ +ipv4.addresses syntax │
│      │                │ and also sets          │
│      │                │ ipv4.method to manual. │
│      │                │ It can be specified    │
│      │                │ multiple times.        │
├──────┼────────────────┼────────────────────────┤
│gw4   │ ipv4.gateway   │                        │
└──────┴────────────────┴────────────────────────┘

답변2

아니요, 표 25의 "IPv4 옵션"에서 의 별칭임을 man nmcli확인할 수 있습니다 . 그러나 주목할 가치가 있습니다.ip4ipv4.addresses ipv4.method

이 별칭은 +ipv4.addresses 구문과 동일하며 ipv4.method를 manual로 설정합니다. 여러 번 지정할 수 있습니다.


일반 팁: info확실하지 않은 경우 항상 확인하거나 페이지를 넘기십시오.man

관련 정보