<?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>Case &#187; vlan</title>
	<atom:link href="http://case.net.ru/tag/vlan/feed/" rel="self" type="application/rss+xml" />
	<link>http://case.net.ru</link>
	<description>Just another technical weblog</description>
	<lastBuildDate>Sun, 29 Jan 2012 08:48:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Настройка VLAN на оборудовании Cisco</title>
		<link>http://case.net.ru/2009/05/18/vlan-on-cisco/</link>
		<comments>http://case.net.ru/2009/05/18/vlan-on-cisco/#comments</comments>
		<pubDate>Mon, 18 May 2009 12:30:08 +0000</pubDate>
		<dc:creator>Case</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[vlan]]></category>

		<guid isPermaLink="false">http://case.net.ru/?p=557</guid>
		<description><![CDATA[Пример настройки для следующей конфигурации: Router (f0/0) -&#62; Trunk -&#62; (f0/0) Switch (f0/1) -&#62; Vlan 10 -&#62; PC1 (f0/2) -&#62; Vlan 20 -&#62; PC2 Настройки PC1: IP Address......................: 10.0.0.2 Subnet Mask.....................: 255.255.255.0 Default Gateway.................: 10.0.0.1 Настройки PC2: IP Address......................: 10.0.1.2 Subnet Mask.....................: 255.255.255.0 Default Gateway.................: 10.0.1.1 Настройки Switch: Switch#conf t Switch(config)#int f0/1 Switch(config-if)#switchport mode trunk [...]]]></description>
			<content:encoded><![CDATA[<p>Пример настройки для следующей конфигурации:</p>

<div class="wp_syntax"><div class="code"><pre class="cli" style="font-family:monospace;">Router (f0/0) -&gt; Trunk -&gt; (f0/0) Switch (f0/1) -&gt; Vlan 10 -&gt; PC1
                                        (f0/2) -&gt; Vlan 20 -&gt; PC2</pre></div></div>

<p>Настройки PC1:</p>

<div class="wp_syntax"><div class="code"><pre class="cli" style="font-family:monospace;">IP Address......................: 10.0.0.2
Subnet Mask.....................: 255.255.255.0
Default Gateway.................: 10.0.0.1</pre></div></div>

<p>Настройки PC2:</p>

<div class="wp_syntax"><div class="code"><pre class="cli" style="font-family:monospace;">IP Address......................: 10.0.1.2
Subnet Mask.....................: 255.255.255.0
Default Gateway.................: 10.0.1.1</pre></div></div>

<p>Настройки Switch:</p>

<div class="wp_syntax"><div class="code"><pre class="cli" style="font-family:monospace;">Switch#conf t
Switch(config)#int f0/1
Switch(config-if)#switchport mode trunk
Switch(config-if)#int f0/1
Switch(config-if)#switchport mode access 
Switch(config-if)#switchport access vlan 10
Switch(config-if)#int f0/2
Switch(config-if)#switchport mode access 
Switch(config-if)#switchport access vlan 20</pre></div></div>

<p>Настройки Router:</p>

<div class="wp_syntax"><div class="code"><pre class="cli" style="font-family:monospace;">Router#vlan database
Router(vlan)#vlan 10
Router(vlan)#vlan 20
Router(vlan)#exit
Router#conf t
Router(config)#int f0/0.10
Router(config-subif)#encapsulation dot1Q 10
Router(config-subif)#ip address 10.0.0.1 255.255.255.0
Router(config)#int f0/0.20
Router(config-subif)#encapsulation dot1Q 20
Router(config-subif)#ip address 10.0.2.1 255.255.255.0
Router(config-subif)#int f0/0
Router(config-if)#no shutdown</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://case.net.ru/2009/05/18/vlan-on-cisco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Работа с VLAN в D-Link</title>
		<link>http://case.net.ru/2009/03/04/vlan/</link>
		<comments>http://case.net.ru/2009/03/04/vlan/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 19:37:12 +0000</pubDate>
		<dc:creator>Case</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[des-3226s]]></category>
		<category><![CDATA[vlan]]></category>

		<guid isPermaLink="false">http://case.net.ru/?p=323</guid>
		<description><![CDATA[Создание vlan: create vlan &#60;vlan_name 32&#62; tag &#60;vlanid 1-4094&#62; &#91;advertisement&#93; Удаление vlan: delete vlan &#60;vlan_name 32&#62; Добавление портов в vlan: config vlan &#60;vlan_name 32&#62; add &#91;tagged&#124;untagged&#93; &#60;portlist&#62; Удаление портов из vlan: config vlan &#60;vlan_name 32&#62; delete &#60;portlist&#62; Просмотр vlan: show vlan Прием на порту только тегированных пакетов: config gvrp &#60;portlist&#62; acceptable_frame tagged_only]]></description>
			<content:encoded><![CDATA[<p>Создание vlan:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">create vlan <span style="color: #000000; font-weight: bold;">&lt;</span>vlan_name <span style="color: #000000;">32</span><span style="color: #000000; font-weight: bold;">&gt;</span> tag <span style="color: #000000; font-weight: bold;">&lt;</span>vlanid <span style="color: #000000;">1</span>-<span style="color: #000000;">4094</span><span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>advertisement<span style="color: #7a0874; font-weight: bold;">&#93;</span></pre></div></div>

<p>Удаление vlan:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">delete vlan <span style="color: #000000; font-weight: bold;">&lt;</span>vlan_name <span style="color: #000000;">32</span><span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>Добавление портов в vlan:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">config vlan <span style="color: #000000; font-weight: bold;">&lt;</span>vlan_name <span style="color: #000000;">32</span><span style="color: #000000; font-weight: bold;">&gt;</span> add <span style="color: #7a0874; font-weight: bold;">&#91;</span>tagged<span style="color: #000000; font-weight: bold;">|</span>untagged<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&lt;</span>portlist<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>Удаление портов из vlan:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">config vlan <span style="color: #000000; font-weight: bold;">&lt;</span>vlan_name <span style="color: #000000;">32</span><span style="color: #000000; font-weight: bold;">&gt;</span> delete <span style="color: #000000; font-weight: bold;">&lt;</span>portlist<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>Просмотр vlan:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">show vlan</pre></div></div>

<p>Прием на порту только тегированных пакетов:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">config gvrp <span style="color: #000000; font-weight: bold;">&lt;</span>portlist<span style="color: #000000; font-weight: bold;">&gt;</span> acceptable_frame tagged_only</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://case.net.ru/2009/03/04/vlan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
