<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Radsy</id>
	<title>Alpine Linux - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Radsy"/>
	<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/wiki/Special:Contributions/Radsy"/>
	<updated>2026-04-28T00:25:55Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Setting_up_a_SSH_server&amp;diff=13765</id>
		<title>Setting up a SSH server</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Setting_up_a_SSH_server&amp;diff=13765"/>
		<updated>2017-09-11T03:47:05Z</updated>

		<summary type="html">&lt;p&gt;Radsy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
This article provides a short overview of SSH on Alpine Linux.&lt;br /&gt;
&lt;br /&gt;
Also see [https://en.wikipedia.org/wiki/Secure_Shell Secure Shell (Wikipedia)].&lt;br /&gt;
&lt;br /&gt;
{{Note|This article describes two popular SSH implementations: OpenSSH and Dropbear. Either can be installed using the [[Alpine setup scripts#setup-sshd|setup-sshd]] script, or by following the below instructions.}}&lt;br /&gt;
&lt;br /&gt;
= OpenSSH =&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/ OpenSSH] is a popular SSH implementation for remote encrypted login to a machine. OpenSSH defines &#039;&#039;sshd&#039;&#039; as the daemon, and &#039;&#039;ssh&#039;&#039; as the client program.&lt;br /&gt;
&lt;br /&gt;
The {{Pkg|openssh}} package provides OpenSSH on Alpine Linux.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
Install the {{Pkg|openssh}} package:&lt;br /&gt;
{{Cmd|apk add openssh}}&lt;br /&gt;
&lt;br /&gt;
{{Note|To use the ACF-frontend for openssh, install {{Pkg|acf-openssh}} instead (assuming that you have the setup-acf script).}}&lt;br /&gt;
&lt;br /&gt;
Also see [https://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management Alpine Linux package management ].&lt;br /&gt;
&lt;br /&gt;
== Service commands ==&lt;br /&gt;
Enable the sshd service so that it starts at boot:&lt;br /&gt;
{{Cmd|rc-update add sshd}}&lt;br /&gt;
&lt;br /&gt;
List services to verify sshd is enabled:&lt;br /&gt;
{{Cmd|rc-status}}&lt;br /&gt;
&lt;br /&gt;
Start the sshd service immediately and create configuration files:&lt;br /&gt;
{{Cmd|/etc/init.d/sshd start}}&lt;br /&gt;
&lt;br /&gt;
{{Note|If you are running from RAM, ensure you save your settings using the &#039;lbu ci&#039; command as necessary. See [https://wiki.alpinelinux.org/wiki/Alpine_local_backup Alpine local backup].}}&lt;br /&gt;
&lt;br /&gt;
Also see [https://wiki.alpinelinux.org/wiki/Alpine_Linux_Init_System Alpine Linux Init System].&lt;br /&gt;
&lt;br /&gt;
== Fine tuning ==&lt;br /&gt;
&lt;br /&gt;
You may wish to change the default configuration. This section describes some of the configuration options as examples, however it is by no means an exhaustive list. See [https://www.openssh.com/manual.html the manual] for full details.&lt;br /&gt;
&lt;br /&gt;
The fine-tuning is done by editing &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039;. Any line starting with &amp;quot;#&amp;quot; will be ignored by &#039;&#039;sshd&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
 UseDNS no   # By setting this to no, connection speed can increase.&lt;br /&gt;
 PasswordAuthentication no  # Do not allow password authentication.&lt;br /&gt;
&lt;br /&gt;
Other configuration options are shown in &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039;. The file includes comments that explain many of the options.&lt;br /&gt;
&lt;br /&gt;
== Firewalling and Port Changes ==&lt;br /&gt;
By default, sshd will communicate on TCP port &#039;&#039;&#039;22&#039;&#039;&#039;.&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sometimes &#039;&#039;&#039;22/tcp&#039;&#039;&#039; is blocked by a firewall over which you have no control. Changing the &#039;&#039;&#039;Port&#039;&#039;&#039; option to an unused port number in &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039; may be useful in this situation.&amp;lt;BR&amp;gt;&lt;br /&gt;
 Port 443   # Use whichever port number fits your needs&lt;br /&gt;
&lt;br /&gt;
{{Note|Ensure the port you wish to use is not already in use by running &#039;&#039;&#039;netstat -lnp&#039;&#039;&#039; on the machine running &#039;&#039;sshd&#039;&#039;.}}&lt;br /&gt;
&lt;br /&gt;
Restart &#039;&#039;sshd&#039;&#039; after making modifications to the configuration file:&lt;br /&gt;
{{Cmd|/etc/init.d/sshd restart}}&lt;br /&gt;
&lt;br /&gt;
{{Note|If you are running from RAM, ensure you save your settings using the &#039;lbu ci&#039; command as necessary. See [https://wiki.alpinelinux.org/wiki/Alpine_local_backup Alpine local backup].}}&lt;br /&gt;
&lt;br /&gt;
= Dropbear =&lt;br /&gt;
&lt;br /&gt;
[https://matt.ucc.asn.au/dropbear/dropbear.html Dropbear] is another open source SSH implementation.&lt;br /&gt;
Install {{Pkg|dropbear}} through the [[Alpine setup scripts]], or manually with:&lt;br /&gt;
{{Cmd|apk add dropbear}}&lt;br /&gt;
Start it:&lt;br /&gt;
{{Cmd|rc-service dropbear start}}&lt;br /&gt;
Add it to the default runlevel:&lt;br /&gt;
{{Cmd|rc-update add dropbear}}&lt;br /&gt;
&lt;br /&gt;
Use the following command to check all available server options:&lt;br /&gt;
{{Cmd|dropbear -h}}&lt;br /&gt;
&lt;br /&gt;
The config file is located at &amp;lt;code&amp;gt;/etc/conf.d/dropbear&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Pkg|dropbear}} also includes an SSH client which in its simplest form can be used like this:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|dbclient host.example.com}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|dbclient x.x.x.x}} (where x.x.x.x is the IP address of the remote machine).&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;dbclient -h&amp;lt;/code&amp;gt; to see all available options.&lt;br /&gt;
&lt;br /&gt;
= Further Reading =&lt;br /&gt;
&lt;br /&gt;
[https://www.openssh.com/portable.html OpenSSH (openssh.com)]&amp;lt;BR&amp;gt;&lt;br /&gt;
[https://en.wikipedia.org/wiki/OpenSSH OpenSSH (wikipedia.org)]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:Networking]]&lt;br /&gt;
[[Category:Security]]&lt;/div&gt;</summary>
		<author><name>Radsy</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Setting_up_a_SSH_server&amp;diff=13764</id>
		<title>Setting up a SSH server</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Setting_up_a_SSH_server&amp;diff=13764"/>
		<updated>2017-09-08T11:13:25Z</updated>

		<summary type="html">&lt;p&gt;Radsy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
This article provides a short overview of SSH on Alpine Linux.&lt;br /&gt;
&lt;br /&gt;
Also see [https://en.wikipedia.org/wiki/Secure_Shell Secure Shell (Wikipedia)].&lt;br /&gt;
&lt;br /&gt;
{{Note|This article describes two popular SSH implementations: OpenSSH and Dropbear. Either can be installed using the [[Alpine setup scripts#setup-sshd|setup-sshd]] script, or by following the below instructions.}}&lt;br /&gt;
&lt;br /&gt;
= OpenSSH =&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/ OpenSSH] is a popular SSH implementation for remote encrypted login to a machine. OpenSSH defines &#039;&#039;sshd&#039;&#039; as the daemon, and &#039;&#039;ssh&#039;&#039; as the client program.&lt;br /&gt;
&lt;br /&gt;
The {{Pkg|openssh}} package provides OpenSSH on Alpine Linux.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
Install the {{Pkg|openssh}} package:&lt;br /&gt;
{{Cmd|apk add openssh}}&lt;br /&gt;
&lt;br /&gt;
{{Note|To use the ACF-frontend for openssh, install {{Pkg|acf-openssh}} instead (assuming that you have the setup-acf script).}}&lt;br /&gt;
&lt;br /&gt;
Also see [https://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management Alpine Linux package management ].&lt;br /&gt;
&lt;br /&gt;
== Service commands ==&lt;br /&gt;
Enable the sshd service so that it starts at boot:&lt;br /&gt;
{{Cmd|rc-update add sshd}}&lt;br /&gt;
&lt;br /&gt;
List services to verify sshd is enabled:&lt;br /&gt;
{{Cmd|rc-status}}&lt;br /&gt;
&lt;br /&gt;
Start the sshd service immediately and create configuration files:&lt;br /&gt;
{{Cmd|/etc/init.d/sshd start}}&lt;br /&gt;
&lt;br /&gt;
{{Note|If you are running from RAM, ensure you save your settings using the &#039;lbu ci&#039; command as necessary. See [https://wiki.alpinelinux.org/wiki/Alpine_local_backup Alpine local backup].}}&lt;br /&gt;
&lt;br /&gt;
Also see [https://wiki.alpinelinux.org/wiki/Alpine_Linux_Init_System Alpine Linux Init System].&lt;br /&gt;
&lt;br /&gt;
== Fine tuning ==&lt;br /&gt;
&lt;br /&gt;
You may wish to change the default configuration. This section describes some of the configuration options as examples, however it is by no means an exhaustive list. See [https://www.openssh.com/manual.html the manual] for full details.&lt;br /&gt;
&lt;br /&gt;
The fine-tuning is done by editing &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039;. Any line starting with &amp;quot;#&amp;quot; will be ignored by &#039;&#039;sshd&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
 UseDNS no   # By setting this to no, connection speed can increase.&lt;br /&gt;
 PasswordAuthentication no  # Do not allow password authentication.&lt;br /&gt;
&lt;br /&gt;
Other configuration options are shown in &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039;. The file includes comments that explain many of the options.&lt;br /&gt;
&lt;br /&gt;
== Firewalling and Port Changes ==&lt;br /&gt;
By default, sshd will communicate on TCP port &#039;&#039;&#039;22&#039;&#039;&#039;.&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sometimes &#039;&#039;&#039;22/tcp&#039;&#039;&#039; is blocked by a firewall over which you have no control. Changing the &#039;&#039;&#039;Port&#039;&#039;&#039; option to an unused port number in &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039; may be useful in this situation.&amp;lt;BR&amp;gt;&lt;br /&gt;
 Port 443   # Use whatever port number that fits your needs&lt;br /&gt;
&lt;br /&gt;
{{Note|Ensure the port you wish to use is not already in use by running &#039;&#039;&#039;netstat -lnp&#039;&#039;&#039; on the machine running &#039;&#039;sshd&#039;&#039;.}}&lt;br /&gt;
&lt;br /&gt;
Restart &#039;&#039;sshd&#039;&#039; after making modifications to the configuration file:&lt;br /&gt;
{{Cmd|/etc/init.d/sshd restart}}&lt;br /&gt;
&lt;br /&gt;
{{Note|If you are running from RAM, ensure you save your settings using the &#039;lbu ci&#039; command as necessary. See [https://wiki.alpinelinux.org/wiki/Alpine_local_backup Alpine local backup].}}&lt;br /&gt;
&lt;br /&gt;
= Dropbear =&lt;br /&gt;
&lt;br /&gt;
[https://matt.ucc.asn.au/dropbear/dropbear.html Dropbear] is another open source SSH implementation.&lt;br /&gt;
Install {{Pkg|dropbear}} through the [[Alpine setup scripts]], or manually with:&lt;br /&gt;
{{Cmd|apk add dropbear}}&lt;br /&gt;
Start it:&lt;br /&gt;
{{Cmd|rc-service dropbear start}}&lt;br /&gt;
Add it to the default runlevel:&lt;br /&gt;
{{Cmd|rc-update add dropbear}}&lt;br /&gt;
&lt;br /&gt;
Use the following command to check all available server options:&lt;br /&gt;
{{Cmd|dropbear -h}}&lt;br /&gt;
&lt;br /&gt;
The config file is located at &amp;lt;code&amp;gt;/etc/conf.d/dropbear&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Pkg|dropbear}} also includes an SSH client which in its simplest form can be used like this:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|dbclient host.example.com}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|dbclient x.x.x.x}} (where x.x.x.x is the IP address of the remote machine).&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;dbclient -h&amp;lt;/code&amp;gt; to see all available options.&lt;br /&gt;
&lt;br /&gt;
= Further Reading =&lt;br /&gt;
&lt;br /&gt;
[https://www.openssh.com/portable.html OpenSSH (openssh.com)]&amp;lt;BR&amp;gt;&lt;br /&gt;
[https://en.wikipedia.org/wiki/OpenSSH OpenSSH (wikipedia.org)]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:Networking]]&lt;br /&gt;
[[Category:Security]]&lt;/div&gt;</summary>
		<author><name>Radsy</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Setting_up_a_SSH_server&amp;diff=13763</id>
		<title>Setting up a SSH server</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Setting_up_a_SSH_server&amp;diff=13763"/>
		<updated>2017-09-08T11:09:53Z</updated>

		<summary type="html">&lt;p&gt;Radsy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
This article provides a short overview of SSH on Alpine Linux.&lt;br /&gt;
&lt;br /&gt;
Also see [https://en.wikipedia.org/wiki/Secure_Shell Secure Shell (Wikipedia)].&lt;br /&gt;
&lt;br /&gt;
{{Note|This article describes two popular SSH implementations: OpenSSH and Dropbear. Either can be installed using the [[Alpine setup scripts#setup-sshd|setup-sshd]] script, or by following the below instructions.}}&lt;br /&gt;
&lt;br /&gt;
= OpenSSH =&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/ OpenSSH] is a popular SSH implementation for remote encrypted login to a machine. OpenSSH defines &#039;&#039;sshd&#039;&#039; as the daemon, and &#039;&#039;ssh&#039;&#039; as the client program.&lt;br /&gt;
&lt;br /&gt;
The {{Pkg|openssh}} package provides OpenSSH on Alpine Linux.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
Install the {{Pkg|openssh}} package:&lt;br /&gt;
{{Cmd|apk add openssh}}&lt;br /&gt;
&lt;br /&gt;
{{Note|To use the ACF-frontend for openssh, install {{Pkg|acf-openssh}} instead (assuming that you have the setup-acf script).}}&lt;br /&gt;
&lt;br /&gt;
Also see [https://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management Alpine Linux package management ].&lt;br /&gt;
&lt;br /&gt;
== Service commands ==&lt;br /&gt;
Enable the sshd daemon so that it starts at boot:&lt;br /&gt;
{{Cmd|rc-update add sshd}}&lt;br /&gt;
&lt;br /&gt;
List services to verify sshd is enabled:&lt;br /&gt;
{{Cmd|rc-status}}&lt;br /&gt;
&lt;br /&gt;
Start the sshd service immediately and create configuration files:&lt;br /&gt;
{{Cmd|/etc/init.d/sshd start}}&lt;br /&gt;
&lt;br /&gt;
{{Note|If you are running from RAM, ensure you save your settings using the &#039;lbu ci&#039; command as necessary. See [https://wiki.alpinelinux.org/wiki/Alpine_local_backup Alpine local backup].}}&lt;br /&gt;
&lt;br /&gt;
Also see [https://wiki.alpinelinux.org/wiki/Alpine_Linux_Init_System Alpine Linux Init System].&lt;br /&gt;
&lt;br /&gt;
== Fine tuning ==&lt;br /&gt;
&lt;br /&gt;
You may wish to change the default configuration. This section describes some of the configuration options as examples, however it is by no means an exhaustive list. See [https://www.openssh.com/manual.html the manual] for full details.&lt;br /&gt;
&lt;br /&gt;
The fine-tuning is done by editing &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039;. Any line starting with &amp;quot;#&amp;quot; will be ignored by &#039;&#039;sshd&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
 UseDNS no   # By setting this to no, connection speed can increase.&lt;br /&gt;
 PasswordAuthentication no  # Do not allow password authentication.&lt;br /&gt;
&lt;br /&gt;
Other configuration options are shown in &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039;. The file includes comments that explain many of the options.&lt;br /&gt;
&lt;br /&gt;
== Firewalling and Port Changes ==&lt;br /&gt;
By default, sshd will communicate on TCP port &#039;&#039;&#039;22&#039;&#039;&#039;.&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sometimes &#039;&#039;&#039;22/tcp&#039;&#039;&#039; is blocked by a firewall over which you have no control. Changing the &#039;&#039;&#039;Port&#039;&#039;&#039; option to an unused port number in &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039; may be useful in this situation.&amp;lt;BR&amp;gt;&lt;br /&gt;
 Port 443   # Use whatever port number that fits your needs&lt;br /&gt;
&lt;br /&gt;
{{Note|Ensure the port you wish to use is not already in use by running &#039;&#039;&#039;netstat -lnp&#039;&#039;&#039; on the machine running &#039;&#039;sshd&#039;&#039;.}}&lt;br /&gt;
&lt;br /&gt;
Restart &#039;&#039;sshd&#039;&#039; after making modifications to the configuration file:&lt;br /&gt;
{{Cmd|/etc/init.d/sshd restart}}&lt;br /&gt;
&lt;br /&gt;
{{Note|If you are running from RAM, ensure you save your settings using the &#039;lbu ci&#039; command as necessary. See [https://wiki.alpinelinux.org/wiki/Alpine_local_backup Alpine local backup].}}&lt;br /&gt;
&lt;br /&gt;
= Dropbear =&lt;br /&gt;
&lt;br /&gt;
[https://matt.ucc.asn.au/dropbear/dropbear.html Dropbear] is another open source SSH implementation.&lt;br /&gt;
Install {{Pkg|dropbear}} through the [[Alpine setup scripts]], or manually with:&lt;br /&gt;
{{Cmd|apk add dropbear}}&lt;br /&gt;
Start it:&lt;br /&gt;
{{Cmd|rc-service dropbear start}}&lt;br /&gt;
Add it to the default runlevel:&lt;br /&gt;
{{Cmd|rc-update add dropbear}}&lt;br /&gt;
&lt;br /&gt;
Use the following command to check all available server options:&lt;br /&gt;
{{Cmd|dropbear -h}}&lt;br /&gt;
&lt;br /&gt;
The config file is located at &amp;lt;code&amp;gt;/etc/conf.d/dropbear&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Pkg|dropbear}} also includes an SSH client which in its simplest form can be used like this:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|dbclient host.example.com}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|dbclient x.x.x.x}} (where x.x.x.x is the IP address of the remote machine).&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;dbclient -h&amp;lt;/code&amp;gt; to see all available options.&lt;br /&gt;
&lt;br /&gt;
= Further Reading =&lt;br /&gt;
&lt;br /&gt;
[https://www.openssh.com/portable.html OpenSSH (openssh.com)]&amp;lt;BR&amp;gt;&lt;br /&gt;
[https://en.wikipedia.org/wiki/OpenSSH OpenSSH (wikipedia.org)]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:Networking]]&lt;br /&gt;
[[Category:Security]]&lt;/div&gt;</summary>
		<author><name>Radsy</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Setting_up_a_SSH_server&amp;diff=13762</id>
		<title>Setting up a SSH server</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Setting_up_a_SSH_server&amp;diff=13762"/>
		<updated>2017-09-08T11:08:58Z</updated>

		<summary type="html">&lt;p&gt;Radsy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
This article provides a short overview of SSH on Alpine Linux.&lt;br /&gt;
&lt;br /&gt;
Also see [https://en.wikipedia.org/wiki/Secure_Shell Secure Shell (Wikipedia)].&lt;br /&gt;
&lt;br /&gt;
{{Note|This article describes two popular SSH implementations: OpenSSH and Dropbear. Either can be installed using the [[Alpine setup scripts#setup-sshd|setup-sshd]] script, or by following the below instructions.}}&lt;br /&gt;
&lt;br /&gt;
= OpenSSH =&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/ OpenSSH] is a popular SSH implementation for remote encrypted login to a machine. OpenSSH defines &#039;&#039;sshd&#039;&#039; as the daemon, and &#039;&#039;ssh&#039;&#039; as the client program.&lt;br /&gt;
&lt;br /&gt;
The {{Pkg|openssh}} package provides OpenSSH on Alpine Linux.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
Install the {{Pkg|openssh}} package:&lt;br /&gt;
{{Cmd|apk add openssh}}&lt;br /&gt;
&lt;br /&gt;
{{Note|To use the ACF-frontend for openssh, install {{Pkg|acf-openssh}} instead (assuming that you have the setup-acf script).}}&lt;br /&gt;
&lt;br /&gt;
Also see [https://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management Alpine Linux package management ].&lt;br /&gt;
&lt;br /&gt;
== Service commands ==&lt;br /&gt;
Enable the sshd daemon so that it starts at boot:&lt;br /&gt;
{{Cmd|rc-update add sshd}}&lt;br /&gt;
&lt;br /&gt;
List services to verify sshd is enabled:&lt;br /&gt;
{{Cmd|rc-status}}&lt;br /&gt;
&lt;br /&gt;
Start the sshd service immediately and create configuration files:&lt;br /&gt;
{{Cmd|/etc/init.d/sshd start}}&lt;br /&gt;
&lt;br /&gt;
{{Note|If you are running from RAM, ensure you save your settings using the &#039;lbu ci&#039; command as necessary. See [https://wiki.alpinelinux.org/wiki/Alpine_local_backup Alpine local backup].}}&lt;br /&gt;
&lt;br /&gt;
Also see [https://wiki.alpinelinux.org/wiki/Alpine_Linux_Init_System Alpine Linux Init System].&lt;br /&gt;
&lt;br /&gt;
== Fine tuning ==&lt;br /&gt;
&lt;br /&gt;
You may wish to change the default configuration. This section describes some of the configuration options as examples, however it is by no means an exhaustive list. See [https://www.openssh.com/manual.html the manual] for full details.&lt;br /&gt;
&lt;br /&gt;
The fine-tuning is done by editing &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039;. Any line starting with &amp;quot;#&amp;quot; will be ignored by &#039;&#039;sshd&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
 UseDNS no   # By setting this to no, connection speed can increase.&lt;br /&gt;
 PasswordAuthentication no  # Do not allow password authentication.&lt;br /&gt;
&lt;br /&gt;
Other configuration options are shown in &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039;. The file includes comments that explain many of the options.&lt;br /&gt;
&lt;br /&gt;
== Firewalling and Port Changes ==&lt;br /&gt;
By default, sshd will communicate on TCP port &#039;&#039;&#039;22&#039;&#039;&#039;.&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sometimes &#039;&#039;&#039;22/tcp&#039;&#039;&#039; is blocked by a firewall over which you have no control. Changing the &#039;&#039;&#039;Port&#039;&#039;&#039; option to an unused port number in &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039; may be useful in this situation.&amp;lt;BR&amp;gt;&lt;br /&gt;
 Port 443   # Use whatever port number that fits your needs&lt;br /&gt;
&lt;br /&gt;
{{Note|Ensure the port you wish to use is not already in use by running &#039;&#039;&#039;netstat -lnp&#039;&#039;&#039; on the machine running &#039;&#039;sshd&#039;&#039;.}}&lt;br /&gt;
&lt;br /&gt;
Restart &#039;&#039;sshd&#039;&#039; after making modifications to the configuration file:&lt;br /&gt;
{{Cmd|/etc/init.d/sshd restart}}&lt;br /&gt;
&lt;br /&gt;
{{Note|If you are running from RAM, ensure you save your settings using the &#039;lbu ci&#039; command as necessary. See [https://wiki.alpinelinux.org/wiki/Alpine_local_backup Alpine local backup].}}&lt;br /&gt;
&lt;br /&gt;
= Dropbear =&lt;br /&gt;
&lt;br /&gt;
[https://matt.ucc.asn.au/dropbear/dropbear.html Dropbear] is another open source SSH implementation.&lt;br /&gt;
Install it through the [[Alpine setup scripts]], or manually with:&lt;br /&gt;
{{Cmd|apk add dropbear}}&lt;br /&gt;
Start it:&lt;br /&gt;
{{Cmd|rc-service dropbear start}}&lt;br /&gt;
Add it to the default runlevel:&lt;br /&gt;
{{Cmd|rc-update add dropbear}}&lt;br /&gt;
&lt;br /&gt;
Use the following command to check all available server options:&lt;br /&gt;
{{Cmd|dropbear -h}}&lt;br /&gt;
&lt;br /&gt;
The config file is located at &amp;lt;code&amp;gt;/etc/conf.d/dropbear&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Pkg|dropbear}} also includes an SSH client which in its simplest form can be used like this:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|dbclient host.example.com}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|dbclient x.x.x.x}} (where x.x.x.x is the IP address of the remote machine).&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;dbclient -h&amp;lt;/code&amp;gt; to see all available options.&lt;br /&gt;
&lt;br /&gt;
= Further Reading =&lt;br /&gt;
&lt;br /&gt;
[https://www.openssh.com/portable.html OpenSSH (openssh.com)]&amp;lt;BR&amp;gt;&lt;br /&gt;
[https://en.wikipedia.org/wiki/OpenSSH OpenSSH (wikipedia.org)]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:Networking]]&lt;br /&gt;
[[Category:Security]]&lt;/div&gt;</summary>
		<author><name>Radsy</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Setting_up_a_SSH_server&amp;diff=13761</id>
		<title>Setting up a SSH server</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Setting_up_a_SSH_server&amp;diff=13761"/>
		<updated>2017-09-08T11:06:21Z</updated>

		<summary type="html">&lt;p&gt;Radsy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
This article provides a short overview of SSH on Alpine Linux.&lt;br /&gt;
&lt;br /&gt;
Also see [https://en.wikipedia.org/wiki/Secure_Shell Secure Shell (Wikipedia)].&lt;br /&gt;
&lt;br /&gt;
{{Note|This article describes two popular SSH implementations: OpenSSH and Dropbear. Either can be installed using the [[Alpine setup scripts#setup-sshd|setup-sshd]] script, or by following the below instructions.}}&lt;br /&gt;
&lt;br /&gt;
= OpenSSH =&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/ OpenSSH] is a popular SSH implementation for remote encrypted login to a machine. OpenSSH defines &#039;&#039;sshd&#039;&#039; as the daemon, and &#039;&#039;ssh&#039;&#039; as the client program.&lt;br /&gt;
&lt;br /&gt;
The {{Pkg|openssh}} package provides OpenSSH on Alpine Linux.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
Install the {{Pkg|openssh}} package:&lt;br /&gt;
{{Cmd|apk add openssh}}&lt;br /&gt;
&lt;br /&gt;
{{Note|To use the ACF-frontend for openssh, install {{Pkg|acf-openssh}} instead (assuming that you have the setup-acf script).}}&lt;br /&gt;
&lt;br /&gt;
Also see [https://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management Alpine Linux package management ].&lt;br /&gt;
&lt;br /&gt;
== Service commands ==&lt;br /&gt;
Enable the sshd daemon so that it starts at boot:&lt;br /&gt;
{{Cmd|rc-update add sshd}}&lt;br /&gt;
&lt;br /&gt;
List services to verify sshd is enabled:&lt;br /&gt;
{{Cmd|rc-status}}&lt;br /&gt;
&lt;br /&gt;
Start the sshd service immediately and create configuration files:&lt;br /&gt;
{{Cmd|/etc/init.d/sshd start}}&lt;br /&gt;
&lt;br /&gt;
{{Note|If you are running from RAM, ensure you save your settings using the &#039;lbu ci&#039; command as necessary. See [https://wiki.alpinelinux.org/wiki/Alpine_local_backup Alpine local backup].}}&lt;br /&gt;
&lt;br /&gt;
Also see [https://wiki.alpinelinux.org/wiki/Alpine_Linux_Init_System Alpine Linux Init System].&lt;br /&gt;
&lt;br /&gt;
== Fine tuning ==&lt;br /&gt;
&lt;br /&gt;
You may wish to change the default configuration. This section describes some of the configuration options as examples, however it is by no means an exhaustive list. See [https://www.openssh.com/manual.html the manual] for full details.&lt;br /&gt;
&lt;br /&gt;
The fine-tuning is done by editing &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039;. Any line starting with &amp;quot;#&amp;quot; will be ignored by &#039;&#039;sshd&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
 UseDNS no   # By setting this to no, connection speed can increase.&lt;br /&gt;
 PasswordAuthentication no  # Do not allow password authentication.&lt;br /&gt;
&lt;br /&gt;
Other configuration options are shown in &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039;. The file includes comments that explain many of the options.&lt;br /&gt;
&lt;br /&gt;
== Firewalling and Port Changes ==&lt;br /&gt;
By default, sshd will communicate on TCP port &#039;&#039;&#039;22&#039;&#039;&#039;.&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sometimes &#039;&#039;&#039;22/tcp&#039;&#039;&#039; is blocked by a firewall over which you have no control. Changing the &#039;&#039;&#039;Port&#039;&#039;&#039; option to an unused port number in &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039; may be useful in this situation.&amp;lt;BR&amp;gt;&lt;br /&gt;
 Port 443   # Use whatever port number that fits your needs&lt;br /&gt;
&lt;br /&gt;
{{Note|Ensure the port you wish to use is not already in use on the machine running &#039;&#039;sshd&#039;&#039; by running the &#039;&#039;&#039;netstat -lnp&#039;&#039;&#039;.}}&lt;br /&gt;
&lt;br /&gt;
Restart &#039;&#039;sshd&#039;&#039; after making modifications to the configuration file:&lt;br /&gt;
{{Cmd|/etc/init.d/sshd restart}}&lt;br /&gt;
&lt;br /&gt;
{{Note|If you are running from RAM, ensure you save your settings using the &#039;lbu ci&#039; command as necessary. See [https://wiki.alpinelinux.org/wiki/Alpine_local_backup Alpine local backup].}}&lt;br /&gt;
&lt;br /&gt;
= Dropbear =&lt;br /&gt;
&lt;br /&gt;
[https://matt.ucc.asn.au/dropbear/dropbear.html Dropbear] is another open source SSH implementation.&lt;br /&gt;
Install it through the [[Alpine setup scripts]], or manually with:&lt;br /&gt;
{{Cmd|apk add dropbear}}&lt;br /&gt;
Start it:&lt;br /&gt;
{{Cmd|rc-service dropbear start}}&lt;br /&gt;
Add it to the default runlevel:&lt;br /&gt;
{{Cmd|rc-update add dropbear}}&lt;br /&gt;
&lt;br /&gt;
Use the following command to check all available server options:&lt;br /&gt;
{{Cmd|dropbear -h}}&lt;br /&gt;
&lt;br /&gt;
The config file is located at &amp;lt;code&amp;gt;/etc/conf.d/dropbear&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Pkg|dropbear}} also includes an SSH client which in its simplest form can be used like this:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|dbclient host.example.com}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|dbclient x.x.x.x}} (where x.x.x.x is the IP address of the remote machine).&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;dbclient -h&amp;lt;/code&amp;gt; to see all available options.&lt;br /&gt;
&lt;br /&gt;
= Further Reading =&lt;br /&gt;
&lt;br /&gt;
[https://www.openssh.com/portable.html OpenSSH (openssh.com)]&amp;lt;BR&amp;gt;&lt;br /&gt;
[https://en.wikipedia.org/wiki/OpenSSH OpenSSH (wikipedia.org)]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:Networking]]&lt;br /&gt;
[[Category:Security]]&lt;/div&gt;</summary>
		<author><name>Radsy</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Setting_up_a_SSH_server&amp;diff=13760</id>
		<title>Setting up a SSH server</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Setting_up_a_SSH_server&amp;diff=13760"/>
		<updated>2017-09-08T11:05:55Z</updated>

		<summary type="html">&lt;p&gt;Radsy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
&lt;br /&gt;
This article provides a short overview of SSH on Alpine Linux.&lt;br /&gt;
&lt;br /&gt;
Also see [https://en.wikipedia.org/wiki/Secure_Shell Secure Shell (Wikipedia)].&lt;br /&gt;
&lt;br /&gt;
{{Note|This article describes two popular SSH implementations: OpenSSH and Dropbear. Either can be installed using the [[Alpine setup scripts#setup-sshd|setup-sshd]] script, or by following the below instructions.}}&lt;br /&gt;
&lt;br /&gt;
= OpenSSH =&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/ OpenSSH] is a popular SSH implementation for remote encrypted login to a machine. OpenSSH defines &#039;&#039;sshd&#039;&#039; as the daemon, and &#039;&#039;ssh&#039;&#039; as the client program.&lt;br /&gt;
&lt;br /&gt;
The {{Pkg|openssh}} package provides OpenSSH on Alpine Linux.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
Install the {{Pkg|openssh}} package:&lt;br /&gt;
{{Cmd|apk add openssh}}&lt;br /&gt;
&lt;br /&gt;
{{Note|To use the ACF-frontend for openssh, install {{Pkg|acf-openssh}} instead (assuming that you have the setup-acf script).}}&lt;br /&gt;
&lt;br /&gt;
Also see [https://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management Alpine Linux package management ].&lt;br /&gt;
&lt;br /&gt;
== Service commands ==&lt;br /&gt;
Enable the sshd daemon so that it starts at boot:&lt;br /&gt;
{{Cmd|rc-update add sshd}}&lt;br /&gt;
&lt;br /&gt;
List services to verify sshd is enabled:&lt;br /&gt;
{{Cmd|rc-status}}&lt;br /&gt;
&lt;br /&gt;
Start the sshd service immediately and create configuration files:&lt;br /&gt;
{{Cmd|/etc/init.d/sshd start}}&lt;br /&gt;
&lt;br /&gt;
{{Note|If you are running from RAM, ensure you save your settings using the &#039;lbu ci&#039; command as necessary. See [https://wiki.alpinelinux.org/wiki/Alpine_local_backup Alpine local backup].}}&lt;br /&gt;
&lt;br /&gt;
Also see [https://wiki.alpinelinux.org/wiki/Alpine_Linux_Init_System Alpine Linux Init System].&lt;br /&gt;
&lt;br /&gt;
== Fine tuning ==&lt;br /&gt;
&lt;br /&gt;
You may wish to change the default configuration. This section describes some of the configuration options as examples, however it is by no means an exhaustive list. See [https://www.openssh.com/manual.html the manual] for full details.&lt;br /&gt;
&lt;br /&gt;
The fine-tuning is done by editing &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039;. Any line starting with &amp;quot;#&amp;quot; will be ignored by &#039;&#039;sshd&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
 UseDNS no   # By setting this to no, connection speed can increase.&lt;br /&gt;
 PasswordAuthentication no  # Do not allow password authentication.&lt;br /&gt;
&lt;br /&gt;
Other configuration options are shown in &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039;. The file includes comments that explain many of the options.&lt;br /&gt;
&lt;br /&gt;
== Firewalling and Port Changes ==&lt;br /&gt;
By default, sshd will communicate on TCP port &#039;&#039;&#039;22&#039;&#039;&#039;.&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sometimes &#039;&#039;&#039;22/tcp&#039;&#039;&#039; is blocked by a firewall over which you have no control. Changing the &#039;&#039;&#039;Port&#039;&#039;&#039; option to an unused port number in &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039; may be useful in this situation.&amp;lt;BR&amp;gt;&lt;br /&gt;
 Port 443   # Use whatever port number that fits your needs&lt;br /&gt;
&lt;br /&gt;
{{Note|Ensure the port you wish to use is not already in use on the machine running &#039;&#039;sshd&#039;&#039; by running the &#039;&#039;&#039;netstat -lnp&#039;&#039;&#039;.}}&lt;br /&gt;
&lt;br /&gt;
Restart &#039;&#039;sshd&#039;&#039; after making modifications to the configuration file:&lt;br /&gt;
{{Cmd|/etc/init.d/sshd restart}}&lt;br /&gt;
&lt;br /&gt;
{{Note|If you are running from RAM, ensure you save your settings using the &#039;lbu ci&#039; command as necessary. See [https://wiki.alpinelinux.org/wiki/Alpine_local_backup Alpine local backup].}}&lt;br /&gt;
&lt;br /&gt;
= Dropbear =&lt;br /&gt;
&lt;br /&gt;
[https://matt.ucc.asn.au/dropbear/dropbear.html Dropbear] is another open source SSH implementation.&lt;br /&gt;
Install it through the [[Alpine setup scripts]], or manually with:&lt;br /&gt;
{{Cmd|apk add dropbear}}&lt;br /&gt;
Start it:&lt;br /&gt;
{{Cmd|rc-service dropbear start}}&lt;br /&gt;
Add it to the default runlevel:&lt;br /&gt;
{{Cmd|rc-update add dropbear}}&lt;br /&gt;
&lt;br /&gt;
Use the following command to check all available server options:&lt;br /&gt;
{{Cmd|dropbear -h}}&lt;br /&gt;
&lt;br /&gt;
The config file is located at &amp;lt;code&amp;gt;/etc/conf.d/dropbear&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Pkg|dropbear}} also includes an SSH client which in its simplest form can be used like this:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|dbclient host.example.com}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|dbclient x.x.x.x}} (where x.x.x.x is the IP address of the remote machine).&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;dbclient -h&amp;lt;/code&amp;gt; to see all available options.&lt;br /&gt;
&lt;br /&gt;
== Further Reading ==&lt;br /&gt;
&lt;br /&gt;
[https://www.openssh.com/portable.html OpenSSH (openssh.com)]&lt;br /&gt;
[https://en.wikipedia.org/wiki/OpenSSH OpenSSH (wikipedia.org)]&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:Networking]]&lt;br /&gt;
[[Category:Security]]&lt;/div&gt;</summary>
		<author><name>Radsy</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Alpine_Linux:IRC&amp;diff=13759</id>
		<title>Alpine Linux:IRC</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Alpine_Linux:IRC&amp;diff=13759"/>
		<updated>2017-09-08T09:41:47Z</updated>

		<summary type="html">&lt;p&gt;Radsy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Channels ==&lt;br /&gt;
&lt;br /&gt;
Alpine Linux have registered the following channels on the [http://freenode.net/ FreeNode] IRC network:&lt;br /&gt;
;[irc://irc.freenode.net/alpine-linux #alpine-linux]&lt;br /&gt;
: For general discussion and quick support questions.&lt;br /&gt;
;[irc://irc.freenode.net/alpine-devel #alpine-devel]&lt;br /&gt;
: For discussion of Alpine Linux development and developer support.&lt;br /&gt;
;[irc://irc.freenode.net/alpine-offtopic #alpine-offtopic] &lt;br /&gt;
: For general chitchat.&lt;br /&gt;
&lt;br /&gt;
Feel free to join and chat! Please be patient when asking questions, it may take a while for someone to answer.&lt;br /&gt;
&lt;br /&gt;
== New to IRC? ==&lt;br /&gt;
&lt;br /&gt;
If you are new to IRC and would like to try it out in your browser, see [http://webchat.freenode.net/ freenode Web IRC]. Make sure you specify one of the above channels when you connect.&lt;br /&gt;
&lt;br /&gt;
Also see [https://en.wikipedia.org/wiki/Wikipedia:IRC/Tutorial Wikipedia&#039;s IRC tutorial].&lt;br /&gt;
&lt;br /&gt;
== Clients ==&lt;br /&gt;
&lt;br /&gt;
There are several free IRC clients available. Here are some popular clients:&lt;br /&gt;
&lt;br /&gt;
* [https://irssi.org/ Irssi]&lt;br /&gt;
* [https://weechat.org/ WeeChat]&lt;br /&gt;
* [https://hexchat.github.io/ HexChat]&lt;br /&gt;
* [http://www.eterna.com.au/ircii/ ircII]&lt;br /&gt;
* [https://pidgin.im/ Pidgin]&lt;br /&gt;
&lt;br /&gt;
Also see [https://en.wikipedia.org/wiki/Comparison_of_Internet_Relay_Chat_clients Wikipedia&#039;s comparison of IRC clients].&lt;/div&gt;</summary>
		<author><name>Radsy</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Alpine_Linux:IRC&amp;diff=13758</id>
		<title>Alpine Linux:IRC</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Alpine_Linux:IRC&amp;diff=13758"/>
		<updated>2017-09-08T09:38:31Z</updated>

		<summary type="html">&lt;p&gt;Radsy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Channels ==&lt;br /&gt;
&lt;br /&gt;
Alpine Linux have registered the following channels on the [http://freenode.net/ FreeNode] IRC network:&lt;br /&gt;
;[irc://irc.freenode.net/alpine-linux #alpine-linux]&lt;br /&gt;
: For general discussion and quick support questions.&lt;br /&gt;
;[irc://irc.freenode.net/alpine-devel #alpine-devel]&lt;br /&gt;
: For discussion of Alpine Linux development and developer support.&lt;br /&gt;
;[irc://irc.freenode.net/alpine-offtopic #alpine-offtopic] &lt;br /&gt;
: For general chitchat.&lt;br /&gt;
&lt;br /&gt;
Feel free to join and chat! Please be patient when asking questions, it may take a while for someone to answer.&lt;br /&gt;
&lt;br /&gt;
== New to IRC? ==&lt;br /&gt;
&lt;br /&gt;
If you are new to IRC and would like to try it out in your browser, see [http://webchat.freenode.net/ freenode Web IRC]. Make sure you specify one of the above channels when you connect.&lt;br /&gt;
&lt;br /&gt;
Also see [https://en.wikipedia.org/wiki/Wikipedia:IRC/Tutorial Wikipedia&#039;s IRC tutorial].&lt;br /&gt;
&lt;br /&gt;
== Clients ==&lt;br /&gt;
&lt;br /&gt;
There are several free IRC clients available:&lt;br /&gt;
&lt;br /&gt;
* [https://irssi.org/ Irssi]&lt;br /&gt;
* [https://weechat.org/ WeeChat]&lt;br /&gt;
* [https://hexchat.github.io/ HexChat]&lt;br /&gt;
* [http://www.eterna.com.au/ircii/ ircII]&lt;br /&gt;
* [https://pidgin.im/ Pidgin]&lt;br /&gt;
&lt;br /&gt;
Also see [https://en.wikipedia.org/wiki/Comparison_of_Internet_Relay_Chat_clients Wikipedia&#039;s comparison of IRC clients].&lt;/div&gt;</summary>
		<author><name>Radsy</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Alpine_Linux:IRC&amp;diff=13757</id>
		<title>Alpine Linux:IRC</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Alpine_Linux:IRC&amp;diff=13757"/>
		<updated>2017-09-08T09:37:04Z</updated>

		<summary type="html">&lt;p&gt;Radsy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Channels ==&lt;br /&gt;
&lt;br /&gt;
Alpine Linux have registered the following channels on the [http://freenode.net/ FreeNode] IRC network:&lt;br /&gt;
;[irc://irc.freenode.net/alpine-linux #alpine-linux]&lt;br /&gt;
: For general discussion and quick support questions.&lt;br /&gt;
;[irc://irc.freenode.net/alpine-devel #alpine-devel]&lt;br /&gt;
: For disussion of Alpine Linux development and developer support.&lt;br /&gt;
;[irc://irc.freenode.net/alpine-offtopic #alpine-offtopic] &lt;br /&gt;
: For general chitchat.&lt;br /&gt;
&lt;br /&gt;
Feel free to join and chat! Please be patient when asking questions, it may take a while for someone to answer.&lt;br /&gt;
&lt;br /&gt;
== New to IRC? ==&lt;br /&gt;
&lt;br /&gt;
If you are new to IRC and would like to try it out in your browser, see [http://webchat.freenode.net/ freenode Web IRC]. Make sure you specify one of the above channels when you connect.&lt;br /&gt;
&lt;br /&gt;
Also see [https://en.wikipedia.org/wiki/Wikipedia:IRC/Tutorial Wikipedia&#039;s IRC tutorial].&lt;br /&gt;
&lt;br /&gt;
== Clients ==&lt;br /&gt;
&lt;br /&gt;
There are several free IRC clients available:&lt;br /&gt;
&lt;br /&gt;
* [https://irssi.org/ Irssi]&lt;br /&gt;
* [https://weechat.org/ WeeChat]&lt;br /&gt;
* [https://hexchat.github.io/ HexChat]&lt;br /&gt;
* [http://www.eterna.com.au/ircii/ ircII]&lt;br /&gt;
* [https://pidgin.im/ Pidgin]&lt;br /&gt;
&lt;br /&gt;
Also see [https://en.wikipedia.org/wiki/Comparison_of_Internet_Relay_Chat_clients Wikipedia&#039;s comparison of IRC clients].&lt;/div&gt;</summary>
		<author><name>Radsy</name></author>
	</entry>
</feed>