Difference between revisions of "Netplan examples"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
Line 6: Line 6:
 
<pre>
 
<pre>
 
network:
 
network:
  version: 2
 
 
   renderer: networkd
 
   renderer: networkd
 
   ethernets:
 
   ethernets:
Line 16: Line 15:
 
         search: your_domain.com
 
         search: your_domain.com
 
         addresses: 8.8.8.8, 1.1.1.1
 
         addresses: 8.8.8.8, 1.1.1.1
 +
  version: 2
 
</pre>
 
</pre>
  

Revision as of 10:34, 6 September 2020


Static IP configuration

network:
  renderer: networkd
  ethernets:
    eno1:
      addresses:
         - 10.10.10.xx/24
      gateway4: 10.10.xx.1
      nameservers:
        search: your_domain.com
        addresses: 8.8.8.8, 1.1.1.1
  version: 2

DHCP configuration

Minimal configuration file:

network:
    ethernets:
        eno0:
            dhcp4: true


network:
    ethernets:
        eth0:
            dhcp4: true
            match:
                macaddress: dc:a6:32:2c:9f:33
            set-name: eth0
    version: 2


See also

Advertising: