Guest User

Untitled

a guest
Oct 22nd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. To add a raspberry pi running raspbian jessie to the network add the following
  2. lines to the end of `/etc/dhcpcd.conf` and reboot:
  3.  
  4. ```
  5. interface eth0
  6. static ip_address=10.110.0.1/24
  7. static routers=10.110.0.1
  8. ```
  9.  
  10. To add a linux machine to the network run the associate setup_network script:
  11.  
  12. ```
  13. sudo ./setup_network.sh up
  14. ```
  15.  
  16. To unconfigure a linux machine run:
  17.  
  18. ```
  19. sudo ./setup_network.sh down
  20. ```
Add Comment
Please, Sign In to add comment