The Dell Edge 5000 runs a version of Ubuntu Linux called Ubuntu Core. The latest version is the 16.04. This article shows how to configure the network on that device

Tool used

Ubuntu core does not have a graphical UI, nor it has the Text UI of the Network Manager, so the only way to configure the network is to use the Network Manager CLI too. In the case of core that tool is used with the command "network-manager.cli"

Setting a static IP

To set up an static IP follow this steps

  1. Create the connection with the appropriate interface, IP and gateway

    admin@localhost:~$ network-manager.nmcli con add con-name static-ip ifname eth0 type ethernet ip4 192.168.118.69/20 gw4 192.168.112.1
    Connection 'static-ip' (f8a2329a-0580-4f43-ad14-e029531cafa7) successfully added.
  2. Add the DNS servers

    admin@localhost:~$ network-manager.nmcli con mod static-ip ipv4.dns "8.8.8.8 8.8.4.4"
  3. Start the connection

    admin@localhost:~$ network-manager.nmcli con up static-ip
    Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/4)

Creating a 3G Connection

To create a mobile connection, execute this commands with the proper information

  1. Create a new connection

    admin@localhost:~$ network-manager.nmcli con add type gsm ifname ttyACM3 con-name TELEKOM_GSMDEMO apn internet.t-mobile user t-mobile password tm
    Connection 'TELEKOM_GSMDEMO' (d472ed41-113a-4a37-972c-6517e335f3cf) successfully added.
  2. Activate the connection

    admin@localhost:~$ network-manager.nmcli con up TELEKOM_GSMDEMO
    Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/6)

Troubleshooting



External Links

For further information look at the following pages:

Related articles

Related articles appear here based on the labels you select. Click to edit the macro and add or change labels.

Related issues