4a8d109839
Revert the changes done to handle multiple mgmt drivers for old templates. This is done to unblock the vnfd create issue containing mgmt driver, which errors out for the 'noop' and vdu mgmt driver mismatch in multiple mgmt driver check. Also add a new openwrt config file for tosca openwrt template Change-Id: I89b9312a926fcf720381a4c5d6420acbadad7bd7
98 lines
2.8 KiB
YAML
98 lines
2.8 KiB
YAML
vdus:
|
|
VDU1:
|
|
config:
|
|
firewall: |
|
|
package firewall
|
|
|
|
config defaults
|
|
option syn_flood '1'
|
|
option input 'ACCEPT'
|
|
option output 'ACCEPT'
|
|
option forward 'REJECT'
|
|
|
|
config zone
|
|
option name 'lan'
|
|
list network 'lan'
|
|
option input 'ACCEPT'
|
|
option output 'ACCEPT'
|
|
option forward 'ACCEPT'
|
|
|
|
config zone
|
|
option name 'wan'
|
|
list network 'wan'
|
|
list network 'wan6'
|
|
option input 'REJECT'
|
|
option output 'ACCEPT'
|
|
option forward 'REJECT'
|
|
option masq '1'
|
|
option mtu_fix '1'
|
|
|
|
config forwarding
|
|
option src 'lan'
|
|
option dest 'wan'
|
|
|
|
config rule
|
|
option name 'Allow-DHCP-Renew'
|
|
option src 'wan'
|
|
option proto 'udp'
|
|
option dest_port '68'
|
|
option target 'ACCEPT'
|
|
option family 'ipv4'
|
|
|
|
config rule
|
|
option name 'Allow-Ping'
|
|
option src 'wan'
|
|
option proto 'icmp'
|
|
option icmp_type 'echo-request'
|
|
option family 'ipv4'
|
|
option target 'ACCEPT'
|
|
|
|
config rule
|
|
option name 'Allow-IGMP'
|
|
option src 'wan'
|
|
option proto 'igmp'
|
|
option family 'ipv4'
|
|
option target 'ACCEPT'
|
|
|
|
config rule
|
|
option name 'Allow-DHCPv6'
|
|
option src 'wan'
|
|
option proto 'udp'
|
|
option src_ip 'fe80::/10'
|
|
option src_port '547'
|
|
option dest_ip 'fe80::/10'
|
|
option dest_port '546'
|
|
option family 'ipv6'
|
|
option target 'ACCEPT'
|
|
|
|
config rule
|
|
option name 'Allow-MLD'
|
|
option src 'wan'
|
|
option proto 'icmp'
|
|
option src_ip 'fe80::/10'
|
|
list icmp_type '130/0'
|
|
list icmp_type '131/0'
|
|
list icmp_type '132/0'
|
|
list icmp_type '143/0'
|
|
option family 'ipv6'
|
|
option target 'ACCEPT'
|
|
|
|
config rule
|
|
option name 'Allow-ICMPv6-Input'
|
|
option src 'wan'
|
|
option proto 'icmp'
|
|
list icmp_type 'echo-request'
|
|
list icmp_type 'echo-reply'
|
|
list icmp_type 'destination-unreachable'
|
|
list icmp_type 'packet-too-big'
|
|
list icmp_type 'time-exceeded'
|
|
list icmp_type 'bad-header'
|
|
list icmp_type 'unknown-header-type'
|
|
list icmp_type 'router-solicitation'
|
|
list icmp_type 'neighbour-solicitation'
|
|
list icmp_type 'router-advertisement'
|
|
list icmp_type 'neighbour-advertisement'
|
|
option limit '190/sec'
|
|
option family 'ipv6'
|
|
option target 'REJECT'
|