diff --git a/docs/README-Traffic_Separation.md b/docs/README-Traffic_Separation.md
index 997982aa370454ecd8fbefceb059ccb62b5ef7eb..10a66757cde1b8131115280abdfb2226e066082e 100644
--- a/docs/README-Traffic_Separation.md
+++ b/docs/README-Traffic_Separation.md
@@ -11,7 +11,7 @@ The functionality for this is specified in Multi-AP Spec 2.0 ch 19, which is the
 The specification defines 3 differing kinds of interfaces towards the Multi-AP subsystem.
 - Fronthaul (FH) - used to connect a client STA
 - Backhaul (BH) - used to connect to another AP
-- Logical Ethernet Interface (LEI) - used to interface between the Multi-AP subsystem and the rest of the node (including CPU and ethernet)  
+- Logical Ethernet Interface (LEI) - used to interface between the Multi-AP subsystem and the rest of the node (including CPU and ethernet)
 
 ### Multi-AP subsystem separation
 
@@ -99,63 +99,53 @@ NOTE: This needs to be set on each Map Agent separately.
 
 The configuration governing the Traffic Separation (vlan tag numbering) comes from the Map Controller.
 
-Primary Vlan ID and Default PCP value is currently set per agent:
+Primary Vlan ID and Default PCP value is set via the controller global section:
 ```
-config agent-policy
-        option agent_id 'ee:6c:9a:79:fc:4e'
-        option band '5'
-        option pvid '1'
-        option pcp_default '2'
+config controller 'controller'
+	option enabled '1'
+	option registrar '5 2'
+	option primary_vid '1'
+	option primary_pcp '2'
 ```
-Each bss specifies which Vlan ID it belongs to:
+Each ap specifies which Vlan ID it belongs to:
 ```
-config bss
+config ap
         option band '5'
         option ssid 'MAP-EC6C9A79FC4E-5GHz'
         option encryption 'sae-mixed'
-        option vlan '1'
-        option multi_ap '2'
+        option vid '1'
+        option type 'fronthaul'
         option key 'FPaY-7teN-hTHa-pgdT'
+        option network 'lan'
 
-config bss
+config ap
         option band '2'
         option ssid 'MAP-EC6C9A79FC4E-2.4GHz'
         option encryption 'sae-mixed'
-        option vlan '1'
-        option multi_ap '2'
+        option vid '1'
+        option type 'fronthaul'
         option key 'FPaY-7teN-hTHa-pgdT'
+        option network 'lan'
 
-config bss
+config ap
         option band '5'
         option ssid 'My-Guest-Network'
         option encryption 'sae-mixed'
-        option vlan '10'
-        option multi_ap '2'
+        option vid '10'
+        option type 'fronthaul'
         option key 'FPaY-7teN-hTHa-pgdT'
+        option network 'lan'
 
-config bss
+config ap
         option band '5'
         option ssid 'Another-Guest-Network'
         option encryption 'sae-mixed'
-        option vlan '20'
-        option multi_ap '2'
+        option vid '20'
+        option type 'fronthaul'
         option key 'FPaY-7teN-hTHa-pgdT'
-```
-Each Vlan needs to be separately declared in its own section:
-```
-config vlan 'lan'
         option network 'lan'
-        option id '1'
-
-config vlan 'guest'
-        option network 'lan'
-        option id '10'
-
-config vlan
-        option network 'lan'
-        option id '20'
 ```
-*Note: This part is likely to be removed*
+
 
 ### ieee1905d