নিম্নলিখিত পোস্ট থেকে:
পোস্টফিক্স সমস্যা: iptables নিয়মগুলি এবং বাইরে থেকে ইমেল গ্রহণ করতে পারে না
প্রস্তাবিত সমাধানটি কাজ করছে (বাইরে থেকে ইমেল পেতে পারে) তবে আমি বুঝতে পারছি না কেন nmap
(আমার বাইরে থেকে SMTP server
) পোর্টটি 25 খোলা নেই, iptables rule
এই বন্দরটি খোলার জন্য প্রয়োগ করার পরে । আসলে, আমি সঙ্গে পেতে nmap
:
Not shown: 994 closed ports
PORT STATE SERVICE
22/tcp open ssh
80/tcp open http
135/tcp filtered msrpc
139/tcp filtered netbios-ssn
443/tcp open https
445/tcp filtered microsoft-ds
আপনি দেখতে পাচ্ছেন, port 25
খোলা হিসাবে প্রদর্শিত হয় না, এই ফলাফলগুলি কি স্বাভাবিক?
ধন্যবাদ
আপডেট 1:
আমি নিম্নলিখিত নিয়মটি প্রয়োগ করি (অবিলম্বে বাইরে থেকে ইমেল পাওয়ার জন্য):
iptables -I INPUT 5 -p tcp -m tcp --dport 25 -j ACCEPT
এবং এটি এই বিধি প্রয়োগের ঠিক পরে কাজ করে।
তারপরে, এর ফলাফল সহ iptables -L
:
# iptables -L
Chain INPUT (policy DROP)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:ssh
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT all -- anywhere anywhere
ACCEPT tcp -- anywhere anywhere tcp dpt:http
ACCEPT tcp -- anywhere anywhere tcp dpt:smtp
ACCEPT tcp -- anywhere anywhere tcp dpt:https
REJECT tcp -- anywhere anywhere reject-with tcp-reset
তারপরে আমি করি nmap
এবং আমি পেয়েছি:
Not shown: 994 closed ports
PORT STATE SERVICE
22/tcp open ssh
80/tcp open http
135/tcp filtered msrpc
139/tcp filtered netbios-ssn
443/tcp open https
445/tcp filtered microsoft-ds