diff --git a/README.md b/README.md
index deac5a65dc642a9bc4698e09976198265a77151a..d6e99f901dcd0b65d6574110052ef59b6e038c42 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 0000000000000000000000000000000000000000..70f28ed0c203cf9bd56baa9d895458bd0084eff1
--- /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