Skip to content

Commit

Permalink
network: fix zone for PPPoE aliases (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
gsanchietti authored Nov 13, 2024
1 parent d452774 commit 1fcf4e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion root/usr/share/nethserver-firewall-migration/network
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ sub role2zone {
my $role = shift;
if ($role eq 'green') {
return 'lan';
} elsif ($role eq 'red') {
} elsif ($role eq 'red' or $role eq 'pppoe') {
return 'wan';
} elsif ($role eq 'blue') {
return 'guest';
Expand Down

0 comments on commit 1fcf4e1

Please sign in to comment.