Skip to content

Commit

Permalink
Merge branch 'vyos:current' into feature/commit-archive-git-backend
Browse files Browse the repository at this point in the history
  • Loading branch information
yunzheng authored Sep 11, 2023
2 parents 5910815 + af398c5 commit 009eeb6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions data/templates/conntrack/nftables-ct.j2
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ table raw {
return
}

{{ group_tmpl.groups(firewall_group, False) }}
{{ group_tmpl.groups(firewall_group, False, True) }}
}

flush chain ip6 raw {{ nft_ct_ignore_name }}
Expand All @@ -54,5 +54,5 @@ table ip6 raw {
return
}

{{ group_tmpl.groups(firewall_group, True) }}
{{ group_tmpl.groups(firewall_group, True, True) }}
}
4 changes: 2 additions & 2 deletions data/templates/firewall/nftables-vrf-zones.j2
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ table inet vrf_zones {
# Chain for inbound traffic
chain vrf_zones_ct_in {
type filter hook prerouting priority raw; policy accept;
counter ct zone set iifname map @ct_iface_map
counter ct original zone set iifname map @ct_iface_map
}
# Chain for locally-generated traffic
chain vrf_zones_ct_out {
type filter hook output priority raw; policy accept;
counter ct zone set oifname map @ct_iface_map
counter ct original zone set oifname map @ct_iface_map
}
}
4 changes: 2 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
vyos-1x (1.4dev0) unstable; urgency=medium
vyos-1x (1.5dev0) unstable; urgency=medium

* Dummy changelog entry for vyos-1x repository
This is a internal VyOS package and the VyOS package process does not use
Expand All @@ -7,4 +7,4 @@ vyos-1x (1.4dev0) unstable; urgency=medium
The correct verion number of this package is auto-generated by GIT
on build-time

-- VyOS maintainers and contributors <[email protected]> Mon, 11 Jan 2021 19:02:53 +0100
-- VyOS maintainers and contributors <[email protected]> Sun, 10 Sep 2023 15:42:53 +0200
2 changes: 1 addition & 1 deletion interface-definitions/service-webproxy.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@
<description>Object size in KB</description>
</valueHelp>
<constraint>
<validator name="numeric" argument="--range 1-100000"/>
<validator name="numeric" argument="--range 1-1000000"/>
</constraint>
</properties>
</leafNode>
Expand Down
2 changes: 2 additions & 0 deletions src/op_mode/firewall.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,8 @@ def find_references(group_type, group_name):
for priority, priority_conf in firewall[item][name_type].items():
if priority not in firewall[item][name_type]:
continue
if 'rule' not in priority_conf:
continue
for rule_id, rule_conf in priority_conf['rule'].items():
source_group = dict_search_args(rule_conf, 'source', 'group', group_type)
dest_group = dict_search_args(rule_conf, 'destination', 'group', group_type)
Expand Down
1 change: 0 additions & 1 deletion src/systemd/vyos-router.service
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[Unit]
Description=VyOS Router
After=systemd-journald-dev-log.socket time-sync.target local-fs.target cloud-config.service
Requires=frr.service
Conflicts=shutdown.target
Before=systemd-user-sessions.service

Expand Down

0 comments on commit 009eeb6

Please sign in to comment.