<?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/"
	>

<channel>
	<title>albertfalvai krónikák</title>
	<atom:link href="http://blog.szollosi.net/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.szollosi.net</link>
	<description>ma kurvára esik</description>
	<pubDate>Thu, 02 Feb 2012 11:04:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The question is</title>
		<link>http://blog.szollosi.net/index.php/2012/02/02/the-question-is/</link>
		<comments>http://blog.szollosi.net/index.php/2012/02/02/the-question-is/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 11:04:02 +0000</pubDate>
		<dc:creator>Imi</dc:creator>
		
		<category><![CDATA[személyes]]></category>

		<guid isPermaLink="false">http://blog.szollosi.net/?p=2085</guid>
		<description><![CDATA[How can I live without VIM?
]]></description>
			<content:encoded><![CDATA[<p>How can I live without VIM?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.szollosi.net/index.php/2012/02/02/the-question-is/feed/</wfw:commentRss>
		</item>
		<item>
		<title>single kvm running script</title>
		<link>http://blog.szollosi.net/index.php/2012/01/31/single-kvm-running-script/</link>
		<comments>http://blog.szollosi.net/index.php/2012/01/31/single-kvm-running-script/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 22:42:02 +0000</pubDate>
		<dc:creator>Imi</dc:creator>
		
		<category><![CDATA[személyes]]></category>

		<category><![CDATA[bash]]></category>

		<category><![CDATA[centOS]]></category>

		<category><![CDATA[kvm]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[munka]]></category>

		<category><![CDATA[qemu]]></category>

		<guid isPermaLink="false">http://blog.szollosi.net/?p=2079</guid>
		<description><![CDATA[I&#8217;m writing a script that&#8217;s run a single virtual machine. This time it has basic knowledge: start&#124;stop&#124;restart&#124;status. I don&#8217;t want to install a whole kvm based hypervisor for I virtual-machine so any feature of the virtualization is come from me And from qemu-kvm of course.
This techniqe is headless so will we connect to the virtual-pc [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m writing a script that&#8217;s run a single virtual machine. This time it has basic knowledge: start|stop|restart|status. I don&#8217;t want to install a whole kvm based hypervisor for I virtual-machine so any feature of the virtualization is come from me And from<a href="http://www.linux-kvm.org/page/Main_Page"> qemu-kvm</a> of course.</p>
<p>This techniqe is headless so will we connect to the virtual-pc with vnc, the network device is bridged with the main connect interface ( it will be changed because of changing of the topology )<br />
The script analise the enviroment to determine network and virtual machine state but this detection is very poor. I want to rewrite it with qemu-kvm pidfile function.</p>
<p>And now the function:<br />
<code>#!/bin/bash<br />
VNETBR="vnet0"<br />
VNETIF="tap0"</p>
<p>#virtual-machine devices<br />
qemu=/usr/libexec/qemu-kvm<br />
hda=/var/virt/image.img<br />
memory=2048<br />
name=alma<br />
vncport=1</p>
<p>case "$1" in<br />
	start)<br />
		TAP0=$(brctl show | grep "tap0")<br />
		if [ "$TAP0" == "" ]; then<br />
                	echo &#8220;install tap interface&#8221;<br />
                	tunctl -u root -t $VNETIF<br />
                	echo &#8220;add tap to bridge&#8221;<br />
                	brctl addif $VNETBR $VNETIF<br />
                	ifconfig $VNETIF up<br />
        	else<br />
                	echo &#8220;tap interface already installed&#8221;<br />
        	fi</p>
<p>		CHECK_VIRT=$(ps -A | grep qemu-kvm)<br />
        		if [ "$CHECK_VIRT" == "" ]; then<br />
                	echo &#8220;start virtual machine&#8221;<br />
			$qemu -hda $hda -m $memory -boot c -name $name -vnc :$vncport -net nic -net tap,ifname=$NETIF,script=no >/dev/null 2>&#038;1 &#038;<br />
			CHECK_VIRT=$(ps -A | grep qemu-kvm)<br />
			echo &#8220;details $CHECK_VIRT&#8221;<br />
        	else<br />
                	echo &#8220;virtual machine already run : &#8220;$CHECK_VIRT&#8221; &#8221;<br />
        	fi<br />
		;;<br />
	stop)<br />
		CHECK_VIRT=$(ps -A | grep qemu-kvm)<br />
                echo &#8220;shutdown $CHECK_VIRT&#8221;<br />
		killall qemu-kvm<br />
		;;<br />
	restart)<br />
		CHECK_VIRT=$(ps -A | grep qemu-kvm)<br />
		echo &#8220;shutdown $CHECK_VIRT&#8221;<br />
		killall qemu-kvm<br />
		sleep 5<br />
		echo &#8220;start virtual machine&#8221;<br />
		$qemu -hda $hda -m $memory -boot c -name $name -vnc :$vncport -net nic -net tap,ifname=$NETIF,script=no >/dev/null 2>&#038;1 &#038;<br />
		CHECK_VIRT=$(ps -A | grep qemu-kvm)<br />
		echo &#8220;details $CHECK_VIRT&#8221;<br />
		;;<br />
	status)<br />
		CHECK_VIRT=$(ps -A | grep qemu-kvm)<br />
		if [ "$CHECK_VIRT" == "" ]; then<br />
			echo &#8220;virtual machine stopped&#8221;<br />
		else<br />
			echo &#8220;details $CHECK_VIRT&#8221;<br />
		fi<br />
		;;<br />
	*)<br />
	echo &#8220;Usage {start|stop|restart|status}&#8221;<br />
	exit 1<br />
esac</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.szollosi.net/index.php/2012/01/31/single-kvm-running-script/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Lightnings</title>
		<link>http://blog.szollosi.net/index.php/2012/01/31/lightnings/</link>
		<comments>http://blog.szollosi.net/index.php/2012/01/31/lightnings/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 22:18:17 +0000</pubDate>
		<dc:creator>Imi</dc:creator>
		
		<category><![CDATA[személyes]]></category>

		<guid isPermaLink="false">http://blog.szollosi.net/?p=2077</guid>
		<description><![CDATA[I want to eat dinner In Corvin mall
-I want a half plate gyros!
-It&#8217;s not half price just like other food!
-Ok, I don&#8217;t ask it. I want a half plate gyros with some extra pita.
-I couldn&#8217;t give pita we have only a few.
o.O
It&#8217;s the 2nd time in the mounth where I get a pozitive feedback from [...]]]></description>
			<content:encoded><![CDATA[<p>I want to eat dinner In Corvin mall<br />
-I want a half plate gyros!<br />
-It&#8217;s not half price just like other food!<br />
-Ok, I don&#8217;t ask it. I want a half plate gyros with some extra pita.<br />
-I couldn&#8217;t give pita we have only a few.<br />
o.O</p>
<p>It&#8217;s the 2nd time in the mounth where I get a pozitive feedback from a girl:<br />
&#8221; That was a facebook profile-pucture like face! &#8221;<br />
o.O</p>
<p>There is a forum thread at hup.hu where somebody ask for a good router device or software. I write 3 or 4 post with router recommendation and good to know features but no answer to my post. When an other people write there alway an answer. What is wrong man?! o.O</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.szollosi.net/index.php/2012/01/31/lightnings/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CentOS system network setting</title>
		<link>http://blog.szollosi.net/index.php/2012/01/30/centos-system-network-setting/</link>
		<comments>http://blog.szollosi.net/index.php/2012/01/30/centos-system-network-setting/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 16:01:21 +0000</pubDate>
		<dc:creator>Imi</dc:creator>
		
		<category><![CDATA[személyes]]></category>

		<category><![CDATA[Hálózat]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://blog.szollosi.net/?p=2068</guid>
		<description><![CDATA[To set advanced networking on a linux system is a very usual problem. It&#8217;s can be set with config options realtime but setting up the system it&#8217;s required to use configfiles @ /etc/sysconfig/network-scripts
Today I have been doing an virtual enviroment and I configured a non-volatile bridge:
#yum install brdige-utils
With runtime command it&#8217;s very short
brctl addbr vnet0
brctl [...]]]></description>
			<content:encoded><![CDATA[<p>To set advanced networking on a linux system is a very usual problem. It&#8217;s can be set with config options realtime but setting up the system it&#8217;s required to use configfiles @ /etc/sysconfig/network-scripts</p>
<p>Today I have been doing an virtual enviroment and I configured a non-volatile bridge:</p>
<p><code>#yum install brdige-utils</code><br />
With runtime command it&#8217;s very short<br />
<code>brctl addbr vnet0<br />
brctl addif vnet0 eth0</code></p>
<p>It you want to impement it with network-script, first configure bridge interface ( very simple setting, maybee require some tuning )</p>
<p><code>DEVICE=vnet0<br />
TYPE=Bridge<br />
ONBOOT=yes<br />
BOOTPROTO=dhcp<br />
DELAY=0</code></p>
<p>There device name and witch in online at boot time and ask an dhcp-server to get an address.<br />
And after that, configure the real interface:</p>
<p><code>DEVICE=eth0<br />
BRIDGE=vnet0<br />
TYPE=ethernet<br />
HWADDR=44:1E:A1:3E:E1:C4<br />
ONBOOT=yes</code></p>
<p>restart networking <code>/etc/init.d/network restart</code> ( it&#8217;s and oldschool network reload ) and take a look around:</p>
<p><code>brctl show<br />
bridge name	bridge id		STP enabled	interfaces<br />
vnet0		8000.441ea13ee1c4	no		eth0<br />
#ip addr show<br />
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue<br />
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00<br />
    inet 127.0.0.1/8 scope host lo<br />
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq qlen 1000<br />
    link/ether 44:1e:a1:3e:e1:c4 brd ff:ff:ff:ff:ff:ff<br />
8: vnet0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue<br />
    link/ether 44:1e:a1:3e:e1:c4 brd ff:ff:ff:ff:ff:ff<br />
    inet 172.21.57.114/24 brd 172.21.57.255 scope global vnet0</code></p>
<p>The documentation of networking on centos system : /usr/share/doc/initscripts</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.szollosi.net/index.php/2012/01/30/centos-system-network-setting/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sunday</title>
		<link>http://blog.szollosi.net/index.php/2012/01/30/sunday/</link>
		<comments>http://blog.szollosi.net/index.php/2012/01/30/sunday/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 15:48:47 +0000</pubDate>
		<dc:creator>Imi</dc:creator>
		
		<category><![CDATA[személyes]]></category>

		<guid isPermaLink="false">http://blog.szollosi.net/?p=2066</guid>
		<description><![CDATA[It way my fater 58th birthday party so we went home and celebrate. It was a very usual hungarian party with a lot of food. 
Rita come with me. She loves dogs so much and want to get some baby photos about me. I have one photo about myself as a baby and she love [...]]]></description>
			<content:encoded><![CDATA[<p>It way my fater 58th birthday party so we went home and celebrate. It was a very usual hungarian party with a lot of food. <img src='http://blog.szollosi.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Rita come with me. She loves dogs so much and want to get some baby photos about me. I have one photo about myself as a baby and she love it. She met my secund godfather and his family at first time. But It wasn&#8217;t a big challange.</p>
<p>At home there was a new little dog. She is a wolfkiller baby with big-big coat. Her name is Endre. Yes she got a boy name but she is a girl. <img src='http://blog.szollosi.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Was a good day. I hate drive at night but there wasn&#8217;t problems on the road when we come back.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.szollosi.net/index.php/2012/01/30/sunday/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fucking saturday</title>
		<link>http://blog.szollosi.net/index.php/2012/01/28/fucking-saturday/</link>
		<comments>http://blog.szollosi.net/index.php/2012/01/28/fucking-saturday/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 13:39:55 +0000</pubDate>
		<dc:creator>Imi</dc:creator>
		
		<category><![CDATA[személyes]]></category>

		<guid isPermaLink="false">http://blog.szollosi.net/?p=2061</guid>
		<description><![CDATA[Do you know that my saturday I spend with backup.  There was no system fault or another problem. The reason I syncing my first deployed server is fucking hungarian mentaility.
I built a lan system with windows PDC for windows XP systems to file sharing. Designed a lan system, with network printers and get some [...]]]></description>
			<content:encoded><![CDATA[<p>Do you know that my saturday I spend with backup.  There was no system fault or another problem. The reason I syncing my first deployed server is fucking hungarian mentaility.</p>
<p>I built a lan system with windows PDC for windows XP systems to file sharing. Designed a lan system, with network printers and get some good non configurable network switches for free to my old primary school. </p>
<p>And now without ANY ask for an offer from me an other man will work with it and does the system maintanance, of course he will get money for this job.<br />
So the rsync is running, clearing the system from guides. I write the school data to a disk, and after that please give me a blow yob dear mayor.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.szollosi.net/index.php/2012/01/28/fucking-saturday/feed/</wfw:commentRss>
		</item>
		<item>
		<title>attacking firewall-s</title>
		<link>http://blog.szollosi.net/index.php/2012/01/25/attacking-firewall-s/</link>
		<comments>http://blog.szollosi.net/index.php/2012/01/25/attacking-firewall-s/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 22:11:26 +0000</pubDate>
		<dc:creator>Imi</dc:creator>
		
		<category><![CDATA[személyes]]></category>

		<guid isPermaLink="false">http://blog.szollosi.net/?p=2054</guid>
		<description><![CDATA[I believe that I have more firewalls than pc-s.  I have been starting test and use IPfire on Virtualbox:
It&#8217;s a good choise use and test firewalls on virtual enviroment. You are able to change the default route of the host network, and with tap interface make nat across the virtual enviroment or check connections [...]]]></description>
			<content:encoded><![CDATA[<p>I believe that I have more firewalls than pc-s. <img src='http://blog.szollosi.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> I have been starting test and use IPfire on Virtualbox:</p>
<p>It&#8217;s a good choise use and test firewalls on virtual enviroment. You are able to change the default route of the host network, and with tap interface make nat across the virtual enviroment or check connections on the other way.</p>
<p>User feeling of IPfire is funny. It isn&#8217;t the same feeling of the pfsense.<br />
Pfsense is a network device. The gui is designed for it. The feeling is &#8220;Hey, it&#8217;s a netwok device, keep it in your mind &#8220;.<br />
IPfire gui is scream about there is a linux based gui. Undeliberate menus and config opcions. Pfsense much more clear and It&#8217;s based on bsd.<br />
I believe for firewall functions a bsd based system is better.</p>
<p>I don&#8217;t give up, there are some very good package and a lot of learning skill about linux system, but I will not change my pfsense router.</p>
<p>To test functions I want to set:<br />
-proxy with content filter<br />
-openvpn connections<br />
-firewall<br />
-torrent and file storeage functions<br />
-snort based IDS</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.szollosi.net/index.php/2012/01/25/attacking-firewall-s/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yet another firewall OS ( based on Linux ) : IPfire</title>
		<link>http://blog.szollosi.net/index.php/2012/01/24/yet-another-firewall-os-based-on-linux-ipfire/</link>
		<comments>http://blog.szollosi.net/index.php/2012/01/24/yet-another-firewall-os-based-on-linux-ipfire/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 22:05:22 +0000</pubDate>
		<dc:creator>Imi</dc:creator>
		
		<category><![CDATA[személyes]]></category>

		<category><![CDATA[firewall]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[router]]></category>

		<category><![CDATA[SMB]]></category>

		<category><![CDATA[soho]]></category>

		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://blog.szollosi.net/?p=2049</guid>
		<description><![CDATA[I found a new router OS on HUP. Funny because the forum thread as something about pfsense and people recommend another firewall. It based on linux and have several good package  to build a hibrid system. ( I think it&#8217;s extremly unrecommended mixing firewall and file sharing options, but at home enviroment &#8230; ) [...]]]></description>
			<content:encoded><![CDATA[<p>I found a new router OS on HUP. Funny because the forum thread as something about pfsense and people recommend another firewall. It based on linux and have several good package  to build a hibrid system. ( I think it&#8217;s extremly unrecommended mixing firewall and file sharing options, but at home enviroment &#8230; ) So in the repo there is samba and NFS as well as torrent package.<br />
It&#8217;s a good project trying virtualization performance about my new notebook.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.szollosi.net/index.php/2012/01/24/yet-another-firewall-os-based-on-linux-ipfire/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Do you wanna fight with me?</title>
		<link>http://blog.szollosi.net/index.php/2012/01/24/do-you-wanna-fight-with-me/</link>
		<comments>http://blog.szollosi.net/index.php/2012/01/24/do-you-wanna-fight-with-me/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 17:01:59 +0000</pubDate>
		<dc:creator>Imi</dc:creator>
		
		<category><![CDATA[személyes]]></category>

		<guid isPermaLink="false">http://blog.szollosi.net/index.php/2012/01/24/do-you-wanna-fight-with-me/</guid>
		<description><![CDATA[A tegnap este érdekesen alakult. Tanárainkkal beültünk egy csokira, majd mikor távoztunk és egyikük elhajtott, üvöltözésre figyeltünk fel. Sajnos belekeveredtünk a dologba ( állítólag A meghúzta B kocsiját ). B ugye nem közülünk való, ő még normális, haverja csapja az ívet. Számára senki sem modoros fehérember, majd barátnőmnek majdnem nekimegy. Egy kidolgozott test egy 150 [...]]]></description>
			<content:encoded><![CDATA[<p>A tegnap este érdekesen alakult. Tanárainkkal beültünk egy csokira, majd mikor távoztunk és egyikük elhajtott, üvöltözésre figyeltünk fel. Sajnos belekeveredtünk a dologba ( állítólag A meghúzta B kocsiját ). B ugye nem közülünk való, ő még normális, haverja csapja az ívet. Számára senki sem modoros fehérember, majd barátnőmnek majdnem nekimegy. Egy kidolgozott test egy 150 centis nő ellen. Ő sem szent, hátratolom, eléállok, állítólag vérlázítóan nézek és paraszt módon magázom emberünket. Az ökle a mellkasom elött, farkasszemet nézünk. Majd le akar fényképezni. Arcom elé húzom ax arab sálat, kezem a nő arcát takarja. Ismét lenyugszik. Közben a &#8220;vétkes&#8221; tízezerben alkuszik meg. A valóság pedig sosrm derül ki.</p>
<p>Sokat voltam azon az oldalon, akit vertek. De tegnap este, ököllel szembenézve nem volt bennem félelem. Persze még most is ráz az ideg. Durva volt. Durva lehetett volna. De végül ennyiben maradt.<br />
Rendőr persze nem jött. Ki tudja, miért. Fura világ. A megállapításaim megvannak. Önuralomból elég jó kegyet kaptam. Holnap majd ax ideg is kimrhy kettlebellen. Remélem.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.szollosi.net/index.php/2012/01/24/do-you-wanna-fight-with-me/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Configuring Juniper SSG firewall active-directory auth with IAS</title>
		<link>http://blog.szollosi.net/index.php/2012/01/23/configuring-juniper-ssg-firewall-active-directory-auth-with-ias/</link>
		<comments>http://blog.szollosi.net/index.php/2012/01/23/configuring-juniper-ssg-firewall-active-directory-auth-with-ias/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 14:51:00 +0000</pubDate>
		<dc:creator>Imi</dc:creator>
		
		<category><![CDATA[személyes]]></category>

		<category><![CDATA[juniper]]></category>

		<category><![CDATA[radius]]></category>

		<category><![CDATA[security]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.szollosi.net/?p=2043</guid>
		<description><![CDATA[One of my customer opened a case to implement this feature. Of course a lot of half true tutorial are on the NET, but non of these complete. So I show you :
IAS konfig:
1 connection reques policies
-drop exiting policies
-add new:
    client-vendor matches &#8220;Radius standard&#8221;
2. Remote Access Policies
-add new
    custom
 [...]]]></description>
			<content:encoded><![CDATA[<p>One of my customer opened a case to implement this feature. Of course a lot of half true tutorial are on the NET, but non of these complete. So I show you :</p>
<p>IAS konfig:</p>
<p>1 connection reques policies<br />
-drop exiting policies<br />
-add new:<br />
    client-vendor matches &#8220;Radius standard&#8221;</p>
<p>2. Remote Access Policies<br />
-add new<br />
    custom<br />
    windows group<br />
    grand remote access<br />
    edit<br />
        authentication<br />
            select pap,spap, unselect ms-chap &#038; ms-chap v2<br />
        advanced<br />
             drop ppp<br />
             add vendor-specific ( vendor code 3224 )<br />
                 -yes, it conforms<br />
                  configure attribute<br />
                        vendor assigned attribute number ( 3 )<br />
                        attribute format ( string )<br />
                        value external ( group name @juniper device )</p>
<p>3. Add client ( radius standard )</p>
<p>Juniper config:<br />
1. configure radius server<br />
<code>set auth-server "radius_teszt" id 1<br />
set auth-server "radius_teszt" server-name "ip-address"<br />
set auth-server "radius_teszt" account-type auth xauth<br />
set auth-server "radius_teszt" radius secret "shared secret"</code></p>
<p>2. configure external group ( groupname the external value configured @<br />
remote access policy )<br />
<code>set user-group "proba" id 1<br />
set user-group "proba" location external<br />
set user-group "proba" type auth xauth</code></p>
<p>You can flavour it with timeout or other parameter you want. It&#8217;s just a working tutorial to use it with firewall filters.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.szollosi.net/index.php/2012/01/23/configuring-juniper-ssg-firewall-active-directory-auth-with-ias/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

