Page 1 of 1
CCR2004-16G-2S+ - Ports wrong side ...
Posted: Wed Jun 08, 2022 10:48 am
by SWISSSNOW
Hallo,
we just unpacked a new CCR2004-16G-2S+ - the Ports are on the wrong side ... Port 1-8 ars 9-16 in RouterOS (9-16 > 1-8)
Is this a hardware problem? Port Banks are directly on the Board placed. Can it be solved by any CLI software command ?
Updating to 7.3 (+Board) did not solve.
Grüße
Stefan
Re: CCR2004-16G-2S+ - Ports wrong side ...
Posted: Wed Jun 08, 2022 4:25 pm
by rextended
after install 7.3, upgrade also on system routerboard the bootloader,
after that, post on forum the results of this command:
/interface ethernet export
Re: CCR2004-16G-2S+ - Ports wrong side ...
Posted: Wed Jun 08, 2022 5:06 pm
by SWISSSNOW
after install 7.3, upgrade also on system routerboard the bootloader,
Allready did, mentioned it with "(+Board)" ... did not change. Is it a known bug?
No cables to swap problem. How can this happen ?? On other "CCR2004-16G-2S+" in same delivery evrything is ok.
Re: CCR2004-16G-2S+ - Ports wrong side ...
Posted: Wed Jun 08, 2022 7:26 pm
by rextended
mentioned it with "(+Board)"
And it does mean something?
Board = RouterBOARD, the hardware, and not mean RouterOS or RouterBOOT
But it is good for your logic to stop on this detail and not read the rest that I have already written to you.
Re: CCR2004-16G-2S+ - Ports wrong side ... [SOLVED]
Posted: Wed Jun 08, 2022 11:34 pm
by SWISSSNOW
/interface ethernet
set [ find default-name=ether9 ] name=ether1
set [ find default-name=ether10 ] name=ether2
set [ find default-name=ether11 ] name=ether3
set [ find default-name=ether12 ] name=ether4
set [ find default-name=ether13 ] name=ether5
set [ find default-name=ether14 ] name=ether6
set [ find default-name=ether15 ] name=ether7
set [ find default-name=ether16 ] name=ether8
set [ find default-name=ether1 ] name=ether9
set [ find default-name=ether2 ] name=ether10
set [ find default-name=ether3 ] name=ether11
set [ find default-name=ether4 ] name=ether12
set [ find default-name=ether5 ] name=ether13
set [ find default-name=ether6 ] name=ether14
set [ find default-name=ether7 ] name=ether15
set [ find default-name=ether8 ] name=ether16
Seems to be a "joke bug" *rofl*.
But why is this rolled out to the customer like this ??
Re: CCR2004-16G-2S+ - Ports wrong side ...
Posted: Wed Jun 08, 2022 11:38 pm
by rextended
You can solve it rapidly.
The problem born if for some reason on first boot the BIOS swap the PCI ID...
Already done for another user:
/interface
:foreach item in=[find where type="ether" or type="wlan"] do={set $item name="$[get $item default-name]-tmp"}
:foreach item in=[find where type="ether" or type="wlan"] do={set $item name=[get $item default-name]}
ethernet reset-mac-address [find]
Re: CCR2004-16G-2S+ - Ports wrong side ...
Posted: Wed Jun 08, 2022 11:42 pm
by SWISSSNOW
You can solve it rapidly.
The problem born if for some reason on first boot the BIOS swap the PCI ID...
Already done for another user:
/interface
:foreach item in=[find where type="ether" or type="wlan"] do={set $item name="$[get $item default-name]-tmp"}
:foreach item in=[find where type="ether" or type="wlan"] do={set $item name=[get $item default-name]}
ethernet reset-mac-address [find]
Thank's for you informations about this.