iptables的問題 - Linux

Table of Contents

請問iptables有辦法針對某個網域的某一個使用者
來連線主機的郵件伺服器嗎?

我是知道就針對網域而言是可以的
應該是這樣子寫, 不知道有沒有錯

# iptables -A INPUT -s *.example.com -m state --state NEW \
-p tcp --dport 25 (or 110) -j DROP (or ACCEPT)


那如果我要針對從 *.example.com 網域的 mimi 使用者單獨做限制
有辦法嗎?

請高手指導一下, 感謝

--

All Comments