How to set Static IP Address in Ubuntu?

Step 1 – Make a change in 00-installer-config.yaml


vi /etc/netplan/00-installer-config.yaml


# This is the network config written by 'subiquity'
network:
  ethernets:
    enp0s3:
      dhcp4: true
      addresses:
        - 192.168.1.7/24
      gateway4: 192.168.1.1
      nameservers:
          addresses: [8.8.8.8, 1.1.1.1]
  version: 2


Whereas 192.168.1.7 = static IP
Whereas 192.168.1.1 = Gateway
Whereas enp0s3 = network name.

Step 2 – Run following command for changes


$ netplan apply
Rajesh Kumar
Follow me
Latest posts by Rajesh Kumar (see all)
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x