Ubuntu 14.04 pobieranie ping: sendmsg: Operacja niedozwolona

10

Problem nie leży w mojej lidze, Ubuntu nie może uzyskać dostępu do żadnej sieci, ale w jakiś sposób wszystkie moje maszyny wirtualne korzystające z wirtualnej skrzynki są w stanie uzyskać dostęp do Internetu. Próbowałem wprowadzić następujące zmiany, ale jak to możliwe, nie powiodło się. Jestem bardzo zdezorientowany, co jest nie tak na moim pudełku. Każda pomoc doceniona.

carl@carl-Latitude-E6410:~$ sudo ip6tables -P INPUT ACCEPT
carl@carl-Latitude-E6410:~$ sudo ip6tables -P OUTPUT ACCEPT
carl@carl-Latitude-E6410:~$ sudo ip6tables -P FORWARD ACCEPT
carl@carl-Latitude-E6410:~$ ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
ping: sendmsg: Operation not permitted
ping: sendmsg: Operation not permitted
^C
--- 8.8.8.8 ping statistics ---
2 packets transmitted, 0 received, 100% packet loss, time 1008ms
carl@carl-Latitude-E6410:~$ sudo iptables -P INPUT ACCEPT
carl@carl-Latitude-E6410:~$ sudo iptables -P OUTPUT ACCEPT
carl@carl-Latitude-E6410:~$ sudo iptables -P FORWARD ACCEPT
carl@carl-Latitude-E6410:~$ sudo service iptables restart
iptables: unrecognized service
carl@carl-Latitude-E6410:~$ ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
ping: sendmsg: Operation not permitted
ping: sendmsg: Operation not permitted
^C
--- 8.8.8.8 ping statistics ---
2 packets transmitted, 0 received, 100% packet loss, time 1008ms
Stainedart
źródło
2
Zrób iptables --flushi spróbuj ponownie.
Nathan C
1
Opróżnianie iptables działało. Mam sprzeczne reguły IP, które były dostarczane z klientem VPN firmy cisco ... w każdym razie po opróżnieniu i ponownej instalacji klienta wszystko jest w porządku i wracam do normy.
Stainedart

Odpowiedzi:

10

Tabele IP czasem stają się trochę ... dziwne i istnieje wiele zasad, które nie zostaną usunięte lub pozostaną przed nami.

Starają iptables --flushsię usunąć wszystkie reguły iptables .

Nathan C.
źródło
5
iptables --flushusuwa wszystkie reguły zapory. Więc tak, usunie problemy związane z zaporą ogniową, ale czy to naprawdę to, co chciałeś zrobić?
sudocode