<?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>iptables use &#8211; Sezer YAMAN</title>
	<atom:link href="https://sezeryaman.com/en/etiket/iptables-use/feed/" rel="self" type="application/rss+xml" />
	<link>https://sezeryaman.com</link>
	<description>Software Developer</description>
	<lastBuildDate>Wed, 26 Sep 2018 00:09:05 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>iptables use</title>
		<link>https://sezeryaman.com/en/iptables-use/</link>
					<comments>https://sezeryaman.com/en/iptables-use/#respond</comments>
		
		<dc:creator><![CDATA[szrymn]]></dc:creator>
		<pubDate>Wed, 26 Sep 2018 00:09:05 +0000</pubDate>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iptables use]]></category>
		<guid isPermaLink="false">https://sezeryaman.com/?p=79</guid>

					<description><![CDATA[We&#8217;re using iptables to connect to the terminal, such as whitelisting (especially on your own) that we use to put the ip block on what you don&#8217;t want to access your server, or especially those you want to access. Briefly; // to list blocked IPs; iptables -L INPUT -v -n // to delete (remove block) &#8230; <a href="https://sezeryaman.com/en/iptables-use/" class="more-link">Continue reading<span class="screen-reader-text"> "iptables use"</span></a>]]></description>
										<content:encoded><![CDATA[<p>We&#8217;re using iptables to connect to the terminal, such as whitelisting (especially on your own) that we use to put the ip block on what you don&#8217;t want to access your server, or especially those you want to access.</p>
<p>Briefly;</p>
<pre class="lang:php decode:true ">// to list blocked IPs;
iptables -L INPUT -v -n

// to delete (remove block) the blocked IP;
iptables -D INPUT -s x.x.x.x -j DROP

// To add (make reliable) the IP addresses to the whitelist;
// INPUT: to inputs, OUTPUT: to outputs
iptables -A INPUT -s  x.x.x.x -j ACCEPT
iptables -A OUTPUT -s x.x.x.x -j ACCEPT</pre>
]]></content:encoded>
					
					<wfw:commentRss>https://sezeryaman.com/en/iptables-use/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
