Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Aldar12005yEdit: Forgot to mentin the diference.
The first rule matches only for packets on the literal interface named "!lo"
The second matches all packets on all interfaces but "lo"
...*sigh* -
endor57515yMade me panic for a second there. Luckily I have the correct rule in my firewall rules, phew
-
@Aldar got to admit, now that you told the difference, it kind of make sense
The syntax is however extremely error prone -
Aldar12005y@Commodore yeah, it does. But, there really should be at least a difference in the output of -L -n -v
I mean, I made the mistake by literally copying what one rule already had - interface specified as !lo
I only later found out the only way to tell if its indeed "-i !lo" or "! -i lo" is by viewing the raw output of iptables-save.
Extremely confusing if you ask me.
Related Rants
GOD DAMN THE STUPID IPTABLES, aaaaah!
Today I learned that
iptables -I INPUT -i !lo -j DROP
and
iptables -I INPUT ! -i lo -j DROP
are two completely different rules, the first of which doesn't work (in ~99.9% of cases)
yet both pass and get added to the firewall. And both rules show exactly the same in the state listing (iptables -L -n -v).
And I was wondering why the hell the firewall wasn't working...
rant
sysadmin
firewall
iptables
why me
stupid mistake