- Timestamp:
- 11/11/08 14:07:26 (8 weeks ago)
- Location:
- branches/maintenance-0.12-0.12.10/hardy-base/client/firewall
- Files:
-
- 4 modified
-
. (modified) (1 prop)
-
ChangeLog (modified) (1 diff)
-
configure.ac (modified) (1 diff)
-
src/EBox/Iptables.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/maintenance-0.12-0.12.10/hardy-base/client/firewall
- Property svn:mergeinfo set to /trunk/client/firewall:11486,11507,11510,11628
-
branches/maintenance-0.12-0.12.10/hardy-base/client/firewall/ChangeLog
r11508 r11632 1 0.12.3 2 + Add rules to allow DHCP requests from interfaces configured via DHCP 1 3 0.12.2 2 4 + Disable annoying debug message -
branches/maintenance-0.12-0.12.10/hardy-base/client/firewall/configure.ac
r11413 r11632 1 AC_INIT([EBox-firewall], [0.12. 1])1 AC_INIT([EBox-firewall], [0.12.3]) 2 2 3 3 AC_CONFIG_AUX_DIR([config]) -
branches/maintenance-0.12-0.12.10/hardy-base/client/firewall/src/EBox/Iptables.pm
r11412 r11632 227 227 pf "-A ointernal $new -p udp --dport 53 -d $dns -j ACCEPT"; 228 228 pf "-A fdns $new -p udp --dport 53 -d $dns -j ACCEPT"; 229 } 230 231 # Method: setDHCP 232 # 233 # Set output DHCP traffic 234 # 235 # Parameters: 236 # 237 # interface - 238 # 239 sub setDHCP 240 { 241 my $self = shift; 242 my $interface = shift; 243 pf "-A ointernal $new -o $interface -p udp --dport 67 -j ACCEPT"; 229 244 } 230 245 … … 400 415 $self->nospoof($ifc, $addrs); 401 416 if ($self->{net}->ifaceMethod($ifc) eq 'dhcp') { 417 $self->setDHCP($ifc); 402 418 my $dnsSrvs = $self->{net}->DHCPNameservers($ifc); 403 419 foreach my $srv (@{$dnsSrvs}) {
