おそらくiptablesのせいでapt-get installができない

おそらくiptablesのせいでapt-get installができない

私は OVH VPS で iptables を使用していますが、Ubuntu パッケージにアクセスできません。その理由が全くわかりません...

apt-get install package_name

言う:

package_nameが見つかりません

自動補完は利用できません。

しかし、 を実行するとapt-get update、すべての目的地に到達します。

Iptables リストを貼り付けます:

Chain INPUT (policy DROP)
target     prot opt source               destination
ACCEPT     all  --  anywhere             anywhere
ACCEPT     all  --  anywhere             anywhere             state RELATED,ESTABLISHED
ACCEPT     tcp  --  anywhere             anywhere             tcp spt:http
ACCEPT     tcp  --  anywhere             anywhere             tcp spt:domain
ACCEPT     udp  --  anywhere             anywhere             udp spt:domain
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:8443 state NEW
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:XXXX state NEW
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:http state NEW
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:https state NEW
ACCEPT     tcp  --  anywhere             anywhere             state NEW tcp dpt:smtp
ACCEPT     tcp  --  anywhere             anywhere             state NEW tcp dpt:submission
ACCEPT     icmp --  anywhere             anywhere             icmp echo-request
LOG        all  --  anywhere             anywhere             LOG level warning
DROP       all  --  anywhere             anywhere

Chain FORWARD (policy DROP)
target     prot opt source               destination

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination
ACCEPT     all  --  anywhere             anywhere

抜けているルールを見つけた場合は、教えてください。

関連情報