Transaction: c702163eb817770d87aa11bd3287187891995d65

Included in block 19,135,993 at 2018/01/20 06:30:54 (UTC).

Transaction overview

Loading...
Transaction info
transaction_id c702163eb817770d87aa11bd3287187891995d65
ref_block_num 64,998
block_num19,135,993
ref_block_prefix 657,090,533
expiration2018/01/20T06:40:51
transaction_num 43
extensions[]
signatures 1f10707c3b80fab0711403a0dba21a385f3eb9f309eb6433da408e54794023c85815147227ec2289a9352ea4dcbf3357311777e386b75c6b22c5481e3025f57c70
operations
comment
"parent_author":"",<br>"parent_permlink":"rasberryfi",<br>"author":"skysparrow",<br>"permlink":"ap-rasberry-pi-for-ap-wifi-ap",<br>"title":"\ub77c\uc988\ubca0\ub9ac\ud30c\uc774\ub97c AP \ub85c \/ Rasberry Pi for AP (wifi AP)",<br>"body":"\ub77c\uc988\ubca0\ub9ac\ud30c\uc774\ub97c AP \ub85c \n\n\nlsusb \uc2e4\ud589\n\nRealtek Semiconductor Corp. RTL8188CUS 802.11n WLAN Adapter \uad00\ub828 \uc7a5\ube44\uac00 \uc788\ub2e4\uba74\nAP \ub85c \ud65c\uc6a9\uc774 \uac00\ub2a5\ud568\n\n\n\n\n1. apt-get \uc5c5\ub370\uc774\ud2b8\n\n sudo apt-get update;\n sudo apt-get upgrade -y\n\n\n2. \ud328\ud0a4\uc9c0\uc124\uce58\n\n sudo apt-get install hostapd bridge-utils iw\n\n3. Network \uc124\uc815\n\n ** \ud639\uc2dc\ubaa8\ub97c\uc77c\uc5d0 \ub300\ube44\ud574 \ubc31\uc5c5\n sudo cp \/etc\/network\/interfaces \/etc\/network\/interfaces.bak\n\n \n sudo nano \/etc\/network\/interfaces\n\n\n auto lo\n\n iface lo inet loopback\n iface eth0 inet dhcp\n\n allow-hotplug wlan0\n iface wlan0 inet dhcp\n\n iface default inet dhcp\n\n # Insert This For Wireless AP Mode\n auto br0\n iface br0 inet dhcp\n bridge_ports eth0 wlan0\n\n4. hostap \uc124\uc815\n\n hostapd Package\ub97c \uc124\uce58\ud560\ub54c \uc0dd\uc131\ub41c \n hostapd\ub294 rtl8188 driver\uac00 \ud3ec\ud568\ub418\uc5b4 \uc788\uc9c0 \uc54a\ub2e4\ud568\n\n \ubcf4\ud1b5\uc740 kernel\uc5d0 driver\uac00 \ud3ec\ud568\ub41c hostapd\ub97c \uc0ac\uc6a9\ud574\uc57c \ud55c\ub2e4.\n \ud574\ub2f9 \uc18c\uc2a4\ub97c \uad6c\ud574\uc11c \ucef4\ud30c\uc77c \ud558\uba74 \ub418\ub098,<br> \n \uc6b0\ub9ac\ub294 \uc774\ubbf8 \ub5a0\ub3cc\uc544\ub2e4\ub2c8\ub294 \ucef4\ud30c\uc77c \uc644\ub8cc\ub41c \ud30c\uc77c\uc744 \uc0ac\uc6a9\ud558\uc5ec\ubcf4\uc790.\n\n\n5. \uae30\uc874 hosttapd \ubc31\uc5c5\ud558\uae30\n\n cd \/usr\/sbin\n sudo cp \/usr\/sbin\/hostapd \/usr\/sbin\/hostapd.bak\n sudo rm -f hostapd\n\n6. \ucef4\ud30c\uc77c\ub41c hosttap \ub2e4\uc6b4\ub85c\ub4dc \ubc0f \uc2e4\ud589 \uad8c\ud55c \ubd80\uc5ec\n\n sudo wget http:\/\/dl.dropbox.com\/u\/1663660\/hostapd\/hostapd\n sudo chown root:root hostapd\n sudo chmod 755 hostapd\n\n7. \ud658\uacbd\uc124\uc815 \ud30c\uc77c \uc218\uc815\n\n wifi AP \uc124\uc815\n sudo nano \/etc\/hostapd\/hostapd.conf\n\n interface=wlan0\n driver=rtl871xdrv\n bridge=br0\n ssid=RPiAP \"\ubb34\uc120AP\uba85\"\n channel=6\n wmm_enabled=0\n wpa=1\n hw_mode=g\n wpa_passphrase=\"AP\uc554\ud638\"\n\n ## Key management algorithms ##\n wpa_key_mgmt=WPA-PSK\n ## Set cipher suites (encryption algorithms) ##\n ## TKIP = Temporal Key Integrity Protocol\n ## CCMP = AES in Counter mode with CBC-MAC\n wpa_pairwise=TKIP\n rsn_pairwise=CCMP\n ## Shared Key Authentication ##\n auth_algs=1\n ## Accept all MAC address ###\n macaddr_acl=0\n\n\n hostap \uc124\uc815\n sudo nano \/etc\/default\/hostapd\n\n # Defaults for hostapd initscript\n #\n # See \/usr\/share\/doc\/hostapd\/README.Debian for information about alternative\n # methods of managing hostapd.\n #\n # Uncomment and set DAEMON_CONF to the absolute path of a hostapd configuration\n # file and hostapd will be started during system boot. An example configuration\n # file can be found at \/usr\/share\/doc\/hostapd\/examples\/hostapd.conf.gz\n #\n DAEMON_CONF=\u201d\/etc\/hostapd\/hostapd.conf\u201d\n\n # Additional daemon options to be appended to hostapd command:-\n # -d show more debug messages (-dd for even more)\n # -K include key data in debug messages\n # -t include timestamps in some debug messages\n #\n # Note that -B (daemon mode) and -P (pidfile) options are automatically\n # configured by the init.d script and must not be added to DAEMON_OPTS.\n #\n #DAEMON_OPTS=\u201d\u201d\n\n8. \uc7ac\uc2dc\uc791\n\n sudo service networking restart\n sudo service hostapd restart",<br>"json_metadata":" \"tags\":[\"rasberryfi\",<br>\"ap\" ,<br>\"links\":[\"http:\/\/dl.dropbox.com\/u\/1663660\/hostapd\/hostapd\" ,<br>\"app\":\"steemit\/0.1\",<br>\"format\":\"markdown\" "
* The API used to generate this page is provided by @steemchiller.