Re: [qubes-users] rc.local iptables persistence on reboot

2016-10-11 Thread Manuel Amador (Rudd-O)
On 09/18/2016 12:14 AM, nishiwak...@gmail.com wrote: > iptables -F > iptables -P INPUT DROP > iptables -P OUTPUT ACCEPT > iptables -P FORWARD DROP > iptables -A INPUT -i lo -j ACCEPT > iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT > iptables -A INPUT -p tcp --dport 80 -j ACCEPT >

[qubes-users] rc.local iptables persistence on reboot

2016-09-18 Thread Connor Page
does it start with this? #!/bin/sh -- You received this message because you are subscribed to the Google Groups "qubes-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to qubes-users+unsubscr...@googlegroups.com. To post to this group, send email to

[qubes-users] rc.local iptables persistence on reboot

2016-09-17 Thread nishiwaka46
Hello, Following Qubes documentation on firewall https://www.qubes-os.org/doc/qubes-firewall/, I tried to put some basics iptables rules into /rw/config/rc.local in an AppVM but they don't persist after reboots : iptables -F iptables -P INPUT DROP iptables -P OUTPUT ACCEPT iptables -P FORWARD