本地机器安装1panel面板无法正常联网

系统信息:
主机名称 orangepi5plus
发行版本 ubuntu-22.04
内核版本 5.10.160-rockchip-rk3588
系统类型 aarch64

遇到的问题:
全新重装系统的机器直接安装1panel,显示"请检查服务器是否能够连接到外部网络环境"。
本地可以联网,访问面板SSH的命令行也能ping百度,但面板没有网络
初步怀疑是需要对网络进行配置,恳求大佬指点!若有缺失信息小弟将尽量及时补上。

ifconfig运行结果:

br-3bf29c02ef54: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        inet 172.18.0.1  netmask 255.255.0.0  broadcast 172.18.255.255
        ether 02:42:8e:c6:42:cd  txqueuelen 0  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

docker0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        inet 172.17.0.1  netmask 255.255.0.0  broadcast 172.17.255.255
        ether 02:42:dd:1a:39:98  txqueuelen 0  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

enP3p49s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.10.69  netmask 255.255.255.0  broadcast 192.168.10.255
        inet6 fe80::9374:6621:c26:c22d  prefixlen 64  scopeid 0x20<link>
        ether c0:74:2b:ff:1e:df  txqueuelen 1000  (Ethernet)
        RX packets 7168  bytes 1161056 (1.1 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 1979  bytes 608348 (608.3 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
        device interrupt 152  

enP4p65s0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        ether c0:74:2b:ff:1e:de  txqueuelen 1000  (Ethernet)
        RX packets 936  bytes 137674 (137.6 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 55  bytes 4994 (4.9 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
        device interrupt 142  

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 649  bytes 90913 (90.9 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 649  bytes 90913 (90.9 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

尝试在装了1panel上的机子上试试查看连接效果

wget https://apps-assets.fit2cloud.com/stable/1panel.json.zip

官方应用商店的网络连接或不是很好(两天刚优化过来着……)

你好,感谢你的回复!
在终端(SSH)运行的效果很好,这台机器的联网是正常的。

root@orangepi5plus:~# wget https://apps-assets.fit2cloud.com/stable/1panel.json.zip
--2023-11-18 14:53:24--  https://apps-assets.fit2cloud.com/stable/1panel.json.zip
Resolving apps-assets.fit2cloud.com (apps-assets.fit2cloud.com)... 112.15.36.250, 2409:8c28:2808:4:3::3a8
Connecting to apps-assets.fit2cloud.com (apps-assets.fit2cloud.com)|112.15.36.250|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 81184 (79K) [application/zip]
Saving to: ‘1panel.json.zip’

1panel.json.zip         100%[============================>]  79.28K  --.-KB/s    in 0.01s   

2023-11-18 14:53:24 (5.32 MB/s) - ‘1panel.json.zip’ saved [81184/81184]

但是面板始终显示无法连接外部网络。
另外,因为不是云服务器,没有公网IP,这个是否影响?

没网络提示,具体是应用商店加载空白、更新失败还是应用部署有问题?

楼主解决了吗,同样问题

遇到相同问题,我的系统镜像为“CentOS-7-x86_64-Minimal-2207-02.iso”
可能1panel对mini镜像有兼容性问题,导致创建的容器也无法连接网络。
QQ截图20240323151238
解决容器联网问题:添加/etc/docker/daemon.json文件
内容为

{                                                                          
    "dns": ["223.5.5.5", "8.8.8.8"]                                                                           
} 

之后重启容器即可。