<?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>envio land &#187; mikrotik</title>
	<atom:link href="http://a3-system.info/blog/category/mikrotik/feed/" rel="self" type="application/rss+xml" />
	<link>http://a3-system.info/blog</link>
	<description>Ash Like Snow</description>
	<lastBuildDate>Sat, 12 May 2012 06:38:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Freeradius Single Simultaneous</title>
		<link>http://a3-system.info/blog/mikrotik/freeradius-single-simultaneous/</link>
		<comments>http://a3-system.info/blog/mikrotik/freeradius-single-simultaneous/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 01:17:58 +0000</pubDate>
		<dc:creator>envio</dc:creator>
				<category><![CDATA[mikrotik]]></category>
		<category><![CDATA[Error: [sql] Failed to check the terminal server for user]]></category>
		<category><![CDATA[freeradius]]></category>
		<category><![CDATA[freeradius Simultaneous user]]></category>
		<category><![CDATA[Simultaneous user]]></category>

		<guid isPermaLink="false">http://a3-system.info/blog/?p=334</guid>
		<description><![CDATA[Recently, I build hotspot system with single Freeradius server on Linux. the NAS is 3 mikrotik Access Point and 1 Mikrotik Ethernet. I followed step mentioned on the net, I am storing user session on MySQL table, uncomment for simultaneous SQL query check. I think I have fulfill all requirement, but I am still not [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I build hotspot system with single Freeradius server on Linux. the NAS is 3 mikrotik Access Point and 1 Mikrotik Ethernet. I followed step mentioned on the net, I am storing user session on MySQL table, uncomment for simultaneous SQL query check. I think I have fulfill all requirement, but I am still not get single simultaneous user work.</p>
<p>I tried login  on different NAS / AP with same username and password and system still allow it. That make me frustrated  for couple day. When I saw on radius log file, it always display :</p>
<p>Error: [sql] Failed to check the terminal server for user &#8216;xxxxxxx&#8217;</p>
<p>I am googling about above error and still not get solution. They say just check &#8216;client.conf&#8217;</p>
<p>Yesterday, I am review my configuration, especially on client.conf. Here sample part of my client conf</p>
<p>client 192.168.x.x {<br />
secret          = xxxxxx<br />
shortname       = hs-d<br />
nastype         = Mikrotik<br />
}</p>
<p>I think, the nastype caused the &#8221; Failed to check the terminal server for user&#8221; then I comment the nastype</p>
<p>client 192.168.x.x {<br />
secret          = xxxxxx<br />
shortname       = hs-d<br />
#nastype         = Mikrotik<br />
}</p>
<p>I restart the freeradius server, and try login on different NAS with same username, now it&#8217;s work <img src='http://a3-system.info/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  the system now allow only single simultaneous user. I am happy with it</p>
]]></content:encoded>
			<wfw:commentRss>http://a3-system.info/blog/mikrotik/freeradius-single-simultaneous/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Password recovery for Mikrotik Router (installed on PC/Computer)</title>
		<link>http://a3-system.info/blog/daily-life/password-recovery-for-mikrotik-router-installed-on-pccomputer/</link>
		<comments>http://a3-system.info/blog/daily-life/password-recovery-for-mikrotik-router-installed-on-pccomputer/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 10:46:14 +0000</pubDate>
		<dc:creator>envio</dc:creator>
				<category><![CDATA[fun stuff]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[mikrotik]]></category>
		<category><![CDATA[mikrotik recovery PC router]]></category>

		<guid isPermaLink="false">http://a3-system.info/blog/?p=27</guid>
		<description><![CDATA[Thing that you must have for this password recovery procedure are linux live CD (I use Ubuntu Live CD) and linux system with g++ compiler. First step, boot your mikrotik PC router using linux live CD and mount the mikrotik drive (it should be ext3 file system), after successfully mounted, copy the &#8216;mikrotik password file&#8217;, [...]]]></description>
			<content:encoded><![CDATA[<p>Thing that you must have for this password recovery procedure are linux live CD (I use Ubuntu Live CD) and linux system with g++ compiler.<br />
<span id="more-27"></span><br />
First step, boot your mikrotik PC router using linux live CD and mount the mikrotik drive (it should be ext3 file system), after successfully mounted, copy the &#8216;mikrotik password file&#8217;, (it located in /mnt/nova/store/user.dat) to USB flash drive, we will decode the password file.</p>
<p>The file path is relative, depend where you mount the mikrotik drive, for example if you mount your mikrotik drive in /mnt/media, the mikrotik password file should be /mnt/media/mnt/nova/store/user.dat</p>
<p>In Ubuntu Live, if you can not copy the file, may be you need to become root, use this command below :</p>
<p>$sudo su</p>
<p>After become &#8216;root&#8217; copy the &#8216;mikrotik password file&#8217; in to USB flash drive, The USB flash drive should be &#8216;plug and play&#8217; in Ubuntu Live.</p>
<p>After we got password file, we can decode it, downlod the the password decoder <a href="http://a3-system.info/blog/files/mtpass-0.2.tar.bz2"><strong>here</strong></a>. After extract the decoder file you can compile it using g++ compiler, or you can use my binary version. I compile it on debian linux, using g++ version 4.1, you may need issue chmod +x in tho this binary file. You can download <a href="http://a3-system.info/blog/files/mtpass"><strong>here</strong></a> or you can visit http://manio.skyboo.net/mikrotik/ to get original version.</p>
<p>Here the some password decode process :</p>
<p><a href="http://a3-system.info/blog/wp-content/uploads/2008/09/mikrotik_password.jpg"><img class="alignnone size-full wp-image-28" title="mikrotik password decode" src="http://a3-system.info/blog/wp-content/uploads/2008/09/mikrotik_password.jpg" alt="mikrotik password decode" width="499" height="269" /></a></p>
<p>Sorry I make the password &#8216;blury&#8217; <img src='http://a3-system.info/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ok you got the password now, you can login into mikrotik pc router now <img src='http://a3-system.info/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://a3-system.info/blog/daily-life/password-recovery-for-mikrotik-router-installed-on-pccomputer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

