05:24:42 sommerfeld: i have reserved an ip on my router, so from the NAS's POV it is dynamic IP, but it is always the same. I should make it truly fixed IP to eliminate the need of the unnecessary service (dhcpagent). 05:26:37 But since this is my first OmniOS install my setup can have defect or config mistakes. 15:56:21 szilard: configuring addresses as quasi-static over DHCP is a good way to operate, but if traffic from dhcpagent is blocked by ipfilter policy or other means, dhcpagent will be unable to renew its address lease and will deconfigure the ip address when the lease expires. 19:28:15 Hi to all, speaking about firewall, I've a problem with ipfilter which is making me crazy... it's the first time I configure ipf and IPv6 in OmniOS, so I guess the cause is something I'm missing in the firewall ruleset. If anyone experienced on this firewall could point be to the right direction, I would be very grateful! :) 19:28:29 You can read my configuration here: https://paste.omnios.org/?34edd493e7eef232#5si18oJbBjyubhndR5rovuiDCfRPd2Zvu1USHTgaoCYH 19:29:14 All seems to work at first but, after a few hours since ipfilter comes up, all IPv6 incoming traffic (I tried ICMPv6 ping and SSH) looks like to be dropped by the OmniOS host. I say "dropped", but if I log blocked traffic, nothing shows up in the log file. 19:30:11 Restarting ipfilter or pinging something in the IPv6 LAN from the OmniOS host immediately solves the problem. 19:31:50 How the hell I'm missing here? I supposed my rules were blocking NDP traffic, but I allowed all ICMPv6 as you can read... maybe I have no clear idea about IPv6 works! :'( 20:23:17 it's been a while since I played with IPF but I think you probably want a single "block in" and "pass out keep state" type rule, and the most others will be "pass in quick " 20:23:56 from memory the "quick" keyword means it stops processing at that point if a packet matches 20:24:41 the "pass out keep state" and "block in on all" act as the default policy 20:25:29 you'll also need the "log" keyword if you want to log anything hitting a rule. 20:26:32 when starting a new firewall I might also start off with making it default allow + log so you can see if you're missing rules. 20:27:10 there should also be flags for ipfstat which will show you the rules and counters for how much is hitting a rule