mirror of
https://github.com/open5gs/open5gs.git
synced 2026-04-28 11:29:32 +00:00
Update document
This commit is contained in:
parent
71367627a8
commit
1ed22fe7b2
1 changed files with 3 additions and 3 deletions
|
|
@ -290,7 +290,7 @@ If your phone can connect to internet, you must run the following command in Nex
|
|||
$ sudo sh -c "echo 1 > /proc/sys/net/ipv4/ip_forward"
|
||||
```
|
||||
|
||||
###### Check IP Tables:
|
||||
###### Check IP/NAT Tables:
|
||||
```
|
||||
$ sudo iptables -L
|
||||
Chain INPUT (policy ACCEPT)
|
||||
|
|
@ -316,9 +316,9 @@ Chain POSTROUTING (policy ACCEPT)
|
|||
target prot opt source destination
|
||||
```
|
||||
|
||||
- There is nothing on the table. It is very good condition. If there is something in the table, you will need to take some special action. (For example, disable docker service and reboot your machine)
|
||||
- There is nothing on the table. It is very good condition. If there is something in the table, you will need to take some special action. (For example, disable docker service, reboot your machine, and check your IP/NAT table.)
|
||||
|
||||
###### If your IP tables is clean, Add IP/NAT Table like the followings:
|
||||
###### If your IP/NAT tables is clean, Add IP/NAT entry like the followings:
|
||||
```
|
||||
$ sudo iptables -t nat -A POSTROUTING -o 'interface-name' -j MASQUERADE
|
||||
$ sudo iptables -I INPUT -i pgwtun -j ACCEPT
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue