install_hotspot.sh 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #!/bin/bash
  2. # Based on Adafruit Learning Technologies Onion Pi project
  3. # But mainly fixed by Raspberry Pi FR...
  4. if (( $EUID != 0 )); then
  5. echo "This must be run as root. Try 'sudo bash $0'."
  6. exit 1
  7. fi
  8. echo "
  9. $(tput setaf 2) .~~. .~~.
  10. $(tput setaf 6) / $(tput setaf 2)'. \ ' ' / .'$(tput setaf 6) \
  11. $(tput setaf 6) | / $(tput setaf 1).~ .~~~..~.$(tput setaf 6) \ |
  12. $(tput setaf 6) | | / $(tput setaf 1) : .~.'~'.~. :$(tput setaf 6) \ | |
  13. $(tput setaf 6)| | | $(tput setaf 1)~ ( ) ( ) ~$(tput setaf 6) | | |
  14. $(tput setaf 6)| | | $(tput setaf 1)( : '~'.~.'~' : )$(tput setaf 6) | | |
  15. $(tput setaf 6)| | | $(tput setaf 1)~ .~ ( ) ~. ~ $(tput setaf 6) | | |
  16. $(tput setaf 6) | | \ $(tput setaf 1)( : '~' : )$(tput setaf 6) / | |
  17. $(tput setaf 6) | \ $(tput setaf 1)'~ .~~~. ~'$(tput setaf 6) / |
  18. $(tput setaf 6) \ $(tput setaf 1)'~'$(tput setaf 6) /
  19. "
  20. echo "$(tput setaf 6)This script will configure your Raspberry Pi as a wireless access point.$(tput sgr0)"
  21. echo "$(tput setaf 6)Updating packages...$(tput sgr0)"
  22. echo "Installing dnsmasq"
  23. apt install dnsmasq iptables -y
  24. systemctl stop dnsmasq
  25. echo "Configuring Wlan0 static IP for 192.168.42.1/24"
  26. echo "interface wlan0
  27. static ip_address=192.168.4.1/24
  28. nohook wpa_supplicant" >> /etc/dhcpcd.conf
  29. echo "Restarting dhcpcd..."
  30. service dhcpcd restart
  31. echo "Configuring dnsmasq..."
  32. mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
  33. echo "interface=wlan0 # Use the require wireless interface - usually wlan0
  34. dhcp-range=192.168.4.2,192.168.4.20,255.255.255.0,24h
  35. address=/freedompi.local/192.168.4.1" > /etc/dnsmasq.conf
  36. echo "Enabling dnsmasq and restart..."
  37. systemctl unmask dnsmasq
  38. systemctl enable dnsmasq
  39. systemctl restart dnsmasq
  40. echo "Unlock wlan soft lock with rfkill..."
  41. if ! command -v rfkill &> /dev/null; then
  42. rfkill unblock wlan
  43. fi
  44. echo "Install and enable hostapd..."
  45. apt-get install hostapd -y
  46. systemctl unmask hostapd
  47. systemctl enable hostapd
  48. echo "interface=wlan0
  49. driver=nl80211
  50. ssid=Open freedompi.local
  51. hw_mode=g
  52. channel=7
  53. wmm_enabled=0
  54. macaddr_acl=0
  55. auth_algs=1
  56. ignore_broadcast_ssid=0
  57. wpa=0
  58. " > /etc/hostapd/hostapd.conf
  59. echo 'DAEMON_CONF="/etc/hostapd/hostapd.conf"' >> /etc/default/hostapd
  60. echo "Starting hostapd..."
  61. systemctl start hostapd
  62. echo "$(tput setaf 6)Setting IP forwarding to start at system boot...$(tput sgr0)"
  63. cp /etc/sysctl.conf /etc/sysctl.bak
  64. echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf
  65. echo "up iptables-restore < /etc/iptables.ipv4.nat" >> /etc/network/interfaces
  66. echo "$(tput setaf 6)Activating IP forwarding...$(tput sgr0)"
  67. sh -c "echo 1 > /proc/sys/net/ipv4/ip_forward"
  68. echo "$(tput setaf 6)Setting up IP tables to interconnect ports...$(tput sgr0)"
  69. iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
  70. iptables -A FORWARD -i eth0 -o wlan0 -m state --state RELATED,ESTABLISHED -j ACCEPT
  71. iptables -A FORWARD -i wlan0 -o eth0 -j ACCEPT
  72. echo "$(tput setaf 6)Saving IP tables...$(tput sgr0)"
  73. sh -c "iptables-save > /etc/iptables.ipv4.nat"
  74. echo "Add auto start on startup the Raspberry Pi."
  75. sed -i '/exit 0/ i iptables-restore < /etc/iptables.ipv4.nat' /etc/rc.local
  76. # echo "$(tput setaf 6)Rebooting...$(tput sgr0)"
  77. # reboot
  78. exit 0