I've been playing around with various iptables
configurations lately, and I noticed that adding a rule which involves --dport 465
(usually reserved for smtps
) results in the human-readable dpt:urd
showing up when listing rules with iptables -L
.
I've never heard of this protocol, and an (admittedly superficial) web search doesn't reveal much about it.
What's URD, and why does iptables
show this instead of the (arguably more well-known, or at least better-documented) smtps
?
This CISCO documentation suggests that
and moreover that
This is (one reason) why you should always, always use
iptables -L -n -v
for listing rules!