소스 검색

gluon-respondd: firewall should allow access for devices in zone local_client (#1291)

Christof Schulze 6 년 전
부모
커밋
bc2fb8cc69
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      package/gluon-respondd/luasrc/lib/gluon/upgrade/400-respondd-firewall

+ 2 - 2
package/gluon-respondd/luasrc/lib/gluon/upgrade/400-respondd-firewall

@@ -15,10 +15,10 @@ uci:section('firewall', 'rule', 'wan_respondd', {
 	target = 'ACCEPT',
 })
 
--- Allow respondd-access on client_local
+-- Allow respondd-access for local clients
 uci:section('firewall', 'rule', 'client_respondd', {
 	name = 'client_respondd',
-	src = 'client_local',
+	src = 'local_client',
 	src_ip = 'fe80::/64',
 	dest_port = '1001',
 	proto = 'udp',