<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Firewall &#8211; Johnny Morano&#039;s Tech Articles</title>
	<atom:link href="https://jmorano.moretrix.com/tag/firewall/feed/" rel="self" type="application/rss+xml" />
	<link>https://jmorano.moretrix.com</link>
	<description>Ramblings of an old-fashioned space cowboy</description>
	<lastBuildDate>Sat, 09 Apr 2022 07:12:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>

<image>
	<url>https://jmorano.moretrix.com/wp-content/uploads/2022/04/cropped-jmorano_emblem-32x32.png</url>
	<title>Firewall &#8211; Johnny Morano&#039;s Tech Articles</title>
	<link>https://jmorano.moretrix.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Install OpenBSD 6.0 on a Soekris net6501</title>
		<link>https://jmorano.moretrix.com/2016/12/install-openbsd-6-0-on-a-soekris-net6501/</link>
					<comments>https://jmorano.moretrix.com/2016/12/install-openbsd-6-0-on-a-soekris-net6501/#respond</comments>
		
		<dc:creator><![CDATA[Johnny Morano]]></dc:creator>
		<pubDate>Tue, 27 Dec 2016 11:38:18 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[OpenBSD]]></category>
		<category><![CDATA[Firewall]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Soekris]]></category>
		<category><![CDATA[SysAdmin]]></category>
		<guid isPermaLink="false">http://jmorano.moretrix.com/?p=1234</guid>

					<description><![CDATA[Recently I bought a Soekris net6501 to build a home network in my new house.Things you need before&#8230;]]></description>
										<content:encoded><![CDATA[
<p>Recently I bought a Soekris net6501 to build a home network in my new house.<br />Things you need before you start:</p>



<ul class="wp-block-list"><li>USB / mSSD drive to install OpenBSD on</li><li>USB drive to boot from</li><li>Serial cable for the initial installation</li></ul>



<p>First go to a mirror and download the amd64 OpenBSD install image, which ends on the .fs extension. The one for OpenBSD 6.0 is called &#8216;install60.fs&#8217;.</p>



<p>The installation procedure will use an USB stick to boot the installation process.<br />The USB stick itself was created on a Linux Desktop system, using dd. There are many ways to get the install image on an USB stick. Google if you are not using a Linux desktop.</p>



<p>I downloaded the install image to my &#8216;Downloads&#8217; folder, and the USB stick was on /dev/sdb</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">dd if=./Downloads/install60.fs of=/dev/sdb bs=1024k</pre>



<p>Once the USB stick/ disk is ready, insert it in your Soekris net6501.</p>



<p>Now prepare your terminal console. I&#8217;ve used Minicom for this purpose, but any kind of terminal emulation program can be used.</p>



<p>Execute the following on the command line:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">minicom -D /dev/ttyUSB0 -b 19200 # no software or hardware flow control</pre>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>Important to note is:<br />&#8211; The baudrate must be set to <mark style="background-color:#fcb900" class="has-inline-color">19200 baud</mark><br />&#8211; You must <mark style="background-color:#fcb900" class="has-inline-color">disable software and/ or hardware flow control</mark></p></blockquote>



<p>Once connected with the serial console cable, plug in the power cable to your Soekris so that it can be boot up.</p>



<p>At the boot prompt, configure the installation image to send its output to the serial console.</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">Using drive 1, partition 3.
Loading.........
probing: pc0 com0 pci mem[620K 1022M a20=on]
disk: hd0+* hd1+ hd2*
&amp;gt;&amp;gt; OpenBSD/i386 BOOT 3.29
boot&amp;gt; stty com0 19200
boot&amp;gt; set tty com0
switching console to com0
&amp;gt;&amp;gt; OpenBSD/i386 BOOT 3.29
boot&amp;gt; bsd 
</pre>



<p>There are two commands that must be executed at the boot prompt:<br />&#8211; <span class="lang:sh decode:true  crayon-inline "><code>stty com0 19200</code></span><br />&#8211; <span class="lang:sh decode:true  crayon-inline "><code>set tty com0</code></span></p>



<p>After the serial console options have been set, boot the kernel by typing <span class="lang:sh decode:true  crayon-inline "><code>bsd</code></span> and hiting <code>ENTER</code></p>



<p>The first steps are to configure the network interfaces.<br />Please also make sure you have enabled sshd, so that after the installation you can access the firewall without using the serial console cable.</p>



<p>The rest of the installation won&#8217;t be covered here.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://jmorano.moretrix.com/2016/12/install-openbsd-6-0-on-a-soekris-net6501/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
