Difference between pages "Package:WPA Supplicant" and "Package:Irssi"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
(Created page with "{{Ebuild |Summary=wpa_supplicant is a cross-platform supplicant with support for open, WEP, WPA and WPA2. It handles scanning, connection and automatic reconnect to access poi...")
 
m (import gentoo commits)
 
Line 1: Line 1:
{{Ebuild
{{Ebuild
|Summary=wpa_supplicant is a cross-platform supplicant with support for open, WEP, WPA and WPA2. It handles scanning, connection and automatic reconnect to access points. wpa_supplicant has <code>wpa_cli</code> and <code>wpa_gui</code> frontends and <code>wpa_supplicant</code> daemon. Configuration is stored on <code>/etc/wpa_supplicant/wpa_supplicant.conf</code>.
|Summary=A modular textUI IRC client with IPv6 support.
|CatPkg=net-wireless/wpa_supplicant
|CatPkg=net-irc/irssi
|Maintainer=
|Maintainer=
|Homepage=http://hostap.epitest.fi/wpa_supplicant/
|Homepage=http://www.irssi.org/
}}
}}
== Configuration ==
irssi is an command line IRC client based on ncurses.
{{file|name=/etc/wpa_supplicant/wpa_supplicant.conf|lang=|desc=wpa_supplicant daemon config|body=
# provide control interface for wpa_cli and wpa_gui frontends
ctrl_interface=/run/wpa_supplicant


# allow wpa_cli and wpa_gui to update config
== Install ==
update_config=1
<console>###i## emerge irssi</console>


network={
== Using irssi ==
ssid="SSID"
* to connect
psk="passphrace"
/connect irc.freenode.net
}


network={
* to set a user name
ssid="SSID2"
/nick newuser
key_mgmt=NONE
}
}}


== Daemon ==
* to join a channel
Start daemon with [[openrc]].
/j #funtoo
<console>
###i##/etc/init.d/wpa_supplicant start
</console>
You can also add it to default runlevel.
<console>
###i##rc-update add wpa_supplicant default
</console>


The daemon can work independently or you can use wpa_cli and wpa_gui frontends. You can also alter configs with frontends.
* to exit
/exit


== wpa_cli ==
You can start cli frontend by running <code>wpa_cli</code>.
<console>
###i## $ wpa_cli
</console>


=== Scan Access Points ===
== External Resources ==
<console>
http://www.irssi.org/documentation documentation
##i##scan
OK
<3>CTRL-EVENT-SCAN-STARTED
<3>CTRL-EVENT-SCAN-RESULTS
##i##scan_results
bssid / frequency / signal level / flags / ssid
50:32:75:ee:b6:fb      2462    -41    [WPA2-PSK-CCMP][ESS]    AndroidAP
00:3a:98:99:12:f3      2412    -71    [WPA2-EAP-CCMP][ESS]    wEKSOTE
00:3a:98:99:12:f0      2412    -71    [WPA2-EAP-CCMP][ESS]    wULAPPA
00:23:33:a2:7d:14      2462    -85    [WPA2-EAP-CCMP][ESS]    SaitaBYOD
00:3a:98:99:12:f1      2412    -70    [ESS]  saitaOpen
</console>


== wpa_gui ==
{{PageNeedsUpdates}}
<code>wpa_gui</code> is simple gui frontend. You can start it by running <code>wpa_gui</code>.
{{EbuildFooter}}
{{EbuildFooter}}
[[Category:IRC]]

Revision as of 01:06, October 3, 2014

Irssi

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

irssi is an command line IRC client based on ncurses.

Install

root # emerge irssi

Using irssi

  • to connect

/connect irc.freenode.net

  • to set a user name

/nick newuser

  • to join a channel

/j #funtoo

  • to exit

/exit


External Resources

http://www.irssi.org/documentation documentation