flash howto for mikrotik rbm33g boards added
This commit is contained in:
parent
1deb835dc9
commit
911c11f801
1 changed files with 31 additions and 0 deletions
31
technikzeugs/howto/flash-rbm33g.md
Normal file
31
technikzeugs/howto/flash-rbm33g.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
## Flashing the routerboards rbm33g
|
||||
follow: https://openwrt.org/toh/mikrotik/mikrotik_rbm33g
|
||||
|
||||
### physische Verbindung
|
||||
serielle Konsole über nullmodem-kabel und 115200 baud
|
||||
ethernet zwischen port1 (neben den LEDs) und laptop
|
||||
|
||||
### config des Routerboards
|
||||
- boot protocol: dhcp
|
||||
|
||||
### config auf laptop
|
||||
#### DHCP-Server
|
||||
dhcpd.conf
|
||||
option domain-name-servers 9.9.9.9, 1.1.1.1;
|
||||
option subnet-mask 255.255.255.0;
|
||||
option routers 192.168.5.1;
|
||||
subnet 192.168.5.0 netmask 255.255.255.0 {
|
||||
range 192.168.5.150 192.168.5.250;
|
||||
}
|
||||
|
||||
|
||||
host MMipsBoot {
|
||||
filename "/srv/atftp/openwrt-18.06.5-ramips-mt7621-mikrotik_rbm33g-initramfs-kernel.bin";
|
||||
hardware ethernet B8:69:F4:A6:3E:51;
|
||||
fixed-address 192.168.5.200;
|
||||
}
|
||||
|
||||
dhcp leases des Routerboard müssen gelöscht werden, damit es sich neu holt!!!
|
||||
|
||||
#### atfpd
|
||||
image in standardordner, file must be world-readable
|
Loading…
Reference in a new issue