Smart-Home am Beispiel der Präsenzerkennung im Raum Projektarbeit Lennart Heimbs, Johannes Krug, Sebastian Dohle und Kevin Holzschuh bei Prof. Oliver Hofmann SS2019
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dhcpcd.tex 653B

1234567891011121314151617181920212223242526272829
  1. interface br0
  2. #eth0
  3. static ip_address=141.75.33.126/24
  4. static routers=141.75.33.1
  5. static domain_name_servers=141.75.40.250
  6. # It is possible to fall back to a static IP if DHCP fails:
  7. define static profile
  8. profile static_br0
  9. static ip_address=192.168.1.23/24
  10. static routers=192.168.1.1
  11. static domain_name_servers=192.168.1.1
  12. # fallback to static profile on eth0
  13. interface br0
  14. fallback static_br0
  15. interface wlan0
  16. static ip_address=192.168.252.1/24
  17. nohook wap_supplicant
  18. define static profile
  19. profile static_wlan0
  20. static ip_address=192.168.1.23/24
  21. static routers=192.168.1.1
  22. static domain_name_servers=192.168.1.1
  23. interface wlan0
  24. fallback static_wlan0