Delete en/trouble-network.md

pull/337/head
thegroove 2024-03-07 04:12:10 +01:00 committed by GitHub
parent e9837c612d
commit e29d1e058f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 47 deletions

View File

@ -1,47 +0,0 @@
# OpenIPC Wiki
[Table of Content](../README.md)
## Troubleshooting: Network does not work
Some IP-cameras require additional parameters set to make the network interface work.
### For recent firmware
Use `extras` boot variable. In Linux console run this
```
fw_setenv extras 'hieth.phyaddru=0 hieth.phyaddrd=1' && reboot
```
If the above settings did not work, try this instead
```
fw_setenv extras 'hieth.phyaddru=1 hieth.phyaddrd=0' && reboot
```
If the above settings did not work, try this instead
```
fw_setenv extras 'hieth.mdioifu=0 hieth.mdioifd=0' && reboot
```
If the above settings did not work, try this instead
```
fw_setenv extras 'hieth.mdioifu=1 hieth.mdioifd=1' && reboot
```
If nothing of the above worked for you, seek help on [our Telegram channel](https://t.me/openipc).
### For older firmware
Set `phyaddru` and `phyaddrd` variables from U-Boot console:
```
setenv phyaddru 0; setenv phyaddrd 1; saveenv; reset
```
If the above settings did not work, try this instead
```
setenv phyaddru 1; setenv phyaddrd 0; saveenv; reset
```
If the above settings did not work, try this instead
```
setenv phyaddru 0; setenv phyaddrd 0; saveenv; reset
```
If the above settings did not work, try this instead
```
setenv phyaddru 1; setenv phyaddrd 1; saveenv; reset
```
If nothing of the above worked for you, seek help on [our Telegram channel](https://t.me/openipc).