From 5adbf504d47f6e33fe77eba6d28bf94d6894bf61 Mon Sep 17 00:00:00 2001 From: Thomas Walzer <walzert@linux.fritz.box> Date: Sun, 17 Nov 2019 16:40:42 +0100 Subject: [PATCH] Added Description for features and added network --- README.md | 11 ++++++----- network/network.md | 16 ++++++++++++++++ 2 files changed, 22 insertions(+), 5 deletions(-) create mode 100644 network/network.md diff --git a/README.md b/README.md index deac5a6..d6e99f9 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,9 @@ I tested follwing boards: The following list contains some information to getting started with some features: -| Feature | | -| --- | --- | -| CAN | [CAN](CAN/can.md) | -| Audio | [Audio](audio/audio.md) | -| Display | [Display](display/display.md) | +| Feature | Description | Link | +| --- | --- | --- | +| CAN | How to configure CAN (virtual /serial) and use in AGL | [CAN](CAN/can.md) | +| Audio | How to set the standard audio device | [Audio](audio/audio.md) | +| Display | How to find out which display is connected and set rotation | [Display](display/display.md) | +| Network | How to set the ip adress in AGL | [Network](network/network.md) | diff --git a/network/network.md b/network/network.md new file mode 100644 index 0000000..70f28ed --- /dev/null +++ b/network/network.md @@ -0,0 +1,16 @@ +# Network + +If you want to give the device a fixed ip adress you could use following commands: + + +First use `connmanctl services` to get the current network connections + for eg. **ethernet_0007324a8eb2_cable** + + + +``` +connmanctl config ethernet_0007324a8eb2_cable --ipv4 manual IPADRESS 255.255.255.0 GATEWAY + +route add default gw GATEWAY + +``` \ No newline at end of file -- GitLab