diff --git a/package/gluon-radv-filterd/files/etc/config/gluon-radv-filterd b/package/gluon-radv-filterd/files/etc/config/gluon-radv-filterd
index 32e1bbb909a2ff90f1c8f471005895d54a43932f..7a7cdabadbed7f114af3b0fa563ad11b0286e0f2 100644
--- a/package/gluon-radv-filterd/files/etc/config/gluon-radv-filterd
+++ b/package/gluon-radv-filterd/files/etc/config/gluon-radv-filterd
@@ -1,4 +1,2 @@
 config filterd
-	option iface 'br-client'
-	option chain 'RADV_FILTER'
 	option threshold '20'
diff --git a/package/gluon-radv-filterd/files/etc/init.d/gluon-radv-filterd b/package/gluon-radv-filterd/files/etc/init.d/gluon-radv-filterd
index 8fc08b1ebc43cf52b062d0490ca5c6ece4858038..4e1bc17954cc634d3b99f3e2456fc055b8b788b9 100755
--- a/package/gluon-radv-filterd/files/etc/init.d/gluon-radv-filterd
+++ b/package/gluon-radv-filterd/files/etc/init.d/gluon-radv-filterd
@@ -6,8 +6,6 @@ DAEMON=/usr/sbin/gluon-radv-filterd
 
 validate_filterd_section() {
     uci_validate_section gluon-radv-filterd filterd "${1}" \
-            'iface:string' \
-            'chain:string:RADV_FILTER' \
             'threshold:uinteger:20'
 }
 
@@ -21,7 +19,7 @@ start_filterd() {
     validate_filterd_section "$1"
 
     procd_open_instance
-    procd_set_param command $DAEMON -i "$iface" -c "$chain" -t $threshold
+    procd_set_param command $DAEMON -i br-client -c RADV_FILTER -t $threshold
     procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5}
     procd_set_param netdev br-client
     procd_set_param stderr 1