我有一臺ec2虛擬機,它是我從VMWare實例中導出的CentOS機器。與此VM關聯的安全組是默認安全組,此默認安全組僅啓用了入站設置,我無法編輯該組的出站設置(它在ec2儀表板中顯示爲禁用),因此不知道原因。EC2 Block All Outbound calls
我想要做的是阻止來自機器內的所有出站呼叫,我有一個應用程序,並試圖模擬在脫機環境中運行它,它可以接受來自VM外部的呼叫,但不能撥打任何電話在虛擬機之外。
有沒有在ec2虛擬機中實現這一點?我不確定我現在可以提供什麼信息,所以我可以得到最好的幫助,所以請向我諮詢任何其他信息。
iptables當前停止在虛擬機中,如果我啓動它將阻止所有到虛擬機的入站調用,我將無法擊中應用程序(它是web應用程序)。
下面是iptables的輸出-L
[[email protected] app_module]# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:ssh
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT icmp -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
Chain FORWARD (policy ACCEPT)
target prot opt source destination
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
你在經典還是VPC中運行? – datasage
它是類VM,而不是VPC –