Please enable javascript, or click here to visit my ecommerce web site powered by Shopify.
Jump to: navigation, search

Difference between revisions of "RockpiS/network-management"

Line 5: Line 5:
 
     [[rockpiS | ROCK Pi S]] > [[RockpiS/network-management | Network Management]]
 
     [[rockpiS | ROCK Pi S]] > [[RockpiS/network-management | Network Management]]
  
This guide describes how to manage the network on ROCK Pi S.
+
This guide describes how to manage the network on ROCK Pi S running Ubuntu system.
  
=== Introduction ===
+
=== Part 1: Set Ethernet static IP Address ===
Rockpis static address settings.First, install some dependency packages
+
    sudo apt-get install netplan.io
+
Create the '''01-netcfg.yaml'''  file in the folder /etc/netplan. If there is no netplan folder, you need to create.
+
    sudo mkdir /etc/netplan
+
    sudo touch /etc/netplan/01-netcfg.yaml
+
Add the following to the file '''01-netcfg.yaml'''
+
  rock@rockpis:/etc/netplan$ cat 01-netcfg.yaml 
+
    network:
+
  version: 2
+
  renderer: networkd
+
  ethernets:
+
    eth0:
+
      addresses:
+
        - 192.168.2.135/24
+
      gateway4: 192.168.2.1
+
      nameservers:
+
          search: [mydomain, otherdomain]
+
          addresses: [192.168.2.1, 255.255.255.0]
+
  
Execute the following command for the configuration to take effect
+
Install some dependency packages
    sudo netplan apply
+
 
then reboot,IP address is what you set.
+
root@rockpis:~# apt-get install netplan.io
 +
 
 +
Create file, /etc/netplan/01-netcfg.yaml. If there is no /etc/netplan folder, create it.
 +
 
 +
root@rockpis:~# touch /etc/netplan/01-netcfg.yaml
 +
 
 +
Add the following contents to the file, /etc/netplan/01-netcfg.yaml and save it.
 +
 
 +
root@rockpis:~# cat /etc/netplan/01-netcfg.yaml
 +
network:
 +
  ethernets:
 +
    eth0:
 +
      addresses:
 +
        - 192.168.1.135/24
 +
      gateway4: 192.168.1.1
 +
      nameservers:
 +
        addresses:
 +
          - "8.8.8.8"
 +
  renderer: networkd
 +
  version: 2
 +
 
 +
Run the commands below to apply your changes.
 +
 
 +
root@rockpis:~# netplan apply
 +
 
 +
To validate that your changes are apply, run the commands below to view the IP address configuration detals.
 +
 
 +
root@rockpis:~# ip addr show dev eth0
 +
 
 +
It should display similar lines like the one below:
 +
 
 +
<pre>
 +
root@rockpis:~# ip addr show dev eth0
 +
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UNKNOWN group default qlen 1000
 +
    link/ether 9e:a0:07:50:41:83 brd ff:ff:ff:ff:ff:ff
 +
    inet 192.168.1.135/24 brd 192.168.1.255 scope global eth0
 +
      valid_lft forever preferred_lft forever
 +
    inet6 fe80::9ca0:7ff:fe50:4183/64 scope link
 +
      valid_lft forever preferred_lft forever
 +
</pre>
  
 
=== Troubleshooting ===
 
=== Troubleshooting ===

Revision as of 03:25, 8 May 2020

    ROCK Pi S >  Network Management

This guide describes how to manage the network on ROCK Pi S running Ubuntu system.

Part 1: Set Ethernet static IP Address

Install some dependency packages

root@rockpis:~# apt-get install netplan.io

Create file, /etc/netplan/01-netcfg.yaml. If there is no /etc/netplan folder, create it.

root@rockpis:~# touch /etc/netplan/01-netcfg.yaml

Add the following contents to the file, /etc/netplan/01-netcfg.yaml and save it.

root@rockpis:~# cat /etc/netplan/01-netcfg.yaml
network:
  ethernets:
    eth0:
      addresses: 
        - 192.168.1.135/24
      gateway4: 192.168.1.1
      nameservers:
        addresses:
          - "8.8.8.8"
  renderer: networkd
  version: 2

Run the commands below to apply your changes.

root@rockpis:~# netplan apply

To validate that your changes are apply, run the commands below to view the IP address configuration detals.

root@rockpis:~# ip addr show dev eth0

It should display similar lines like the one below:

root@rockpis:~# ip addr show dev eth0
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UNKNOWN group default qlen 1000
    link/ether 9e:a0:07:50:41:83 brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.135/24 brd 192.168.1.255 scope global eth0
       valid_lft forever preferred_lft forever
    inet6 fe80::9ca0:7ff:fe50:4183/64 scope link 
       valid_lft forever preferred_lft forever

Troubleshooting