<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>telnet &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/telnet/</link>
	<description>Feed of posts on WordPress.com tagged "telnet"</description>
	<pubDate>Fri, 27 Nov 2009 16:47:55 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[CMD "Живее всех живых", пакет утилит Pstools.]]></title>
<link>http://logsit.wordpress.com/2009/11/14/cmd-%d0%b6%d0%b8%d0%b2%d0%b5%d0%b5-%d0%b2%d1%81%d0%b5%d1%85-%d0%b6%d0%b8%d0%b2%d1%8b%d1%85-%d0%bf%d0%b0%d0%ba%d0%b5%d1%82-%d1%83%d1%82%d0%b8%d0%bb%d0%b8%d1%82-pstools/</link>
<pubDate>Sat, 14 Nov 2009 18:01:49 +0000</pubDate>
<dc:creator>logsit</dc:creator>
<guid>http://logsit.wordpress.com/2009/11/14/cmd-%d0%b6%d0%b8%d0%b2%d0%b5%d0%b5-%d0%b2%d1%81%d0%b5%d1%85-%d0%b6%d0%b8%d0%b2%d1%8b%d1%85-%d0%bf%d0%b0%d0%ba%d0%b5%d1%82-%d1%83%d1%82%d0%b8%d0%bb%d0%b8%d1%82-pstools/</guid>
<description><![CDATA[Привет всем, на конец-то нашёл время на написание статеяк, в нашем городе Челябинске закрыли все уче]]></description>
<content:encoded><![CDATA[Привет всем, на конец-то нашёл время на написание статеяк, в нашем городе Челябинске закрыли все уче]]></content:encoded>
</item>
<item>
<title><![CDATA[Net Tool]]></title>
<link>http://onatm.wordpress.com/2009/11/10/net-tool/</link>
<pubDate>Tue, 10 Nov 2009 19:16:12 +0000</pubDate>
<dc:creator>onatm</dc:creator>
<guid>http://onatm.wordpress.com/2009/11/10/net-tool/</guid>
<description><![CDATA[Arkadaşımın rapidshare hesabının şifresinin değiştiği gün, modem resetle uğraşıp duruyordum. Modemin]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Arkadaşımın rapidshare hesabının şifresinin değiştiği gün, modem resetle uğraşıp duruyordum. Modemin arayüzüne bağlanıp resetlemek zor olmasa da bunu daha kısa yoldan halletmek için bir uygulama geliştirmeye karar verdim. Modem arayüzüne telnet protokolüyle de ulaşılabildiği için ihtiyaçlarımı karşılayacak bir telnet sınıfı geliştirdim. Uygulamayı geliştirdiğim sırada DNS adreslerini değiştirmeyi beceremeyen bir arkadaşım sayesinde uygulamayı biraz daha geliştirerek ufak bir network tool&#8217;u haline getirdim. Yeni özellikler ve arayüz değişiklikleri yapabilirim ama xss tunnel&#8217;in php versiyonunu bitirene kadar kaynak kodları rafa kaldırıyorum.</p>
<p><a href="http://onatm.wordpress.com/files/2009/11/nettool01.jpg" target="_blank"><img class="alignnone size-medium wp-image-195" title="nettool01" src="http://onatm.wordpress.com/files/2009/11/nettool01.jpg?w=230" alt="nettool01" width="230" height="300" /></a></p>
<p><a href="http://nettool.codeplex.com/" target="_blank">http://nettool.codeplex.com</a> adresinden uygulamaya ve kaynak kodlara ulaşabilirsiniz. Kaynak kodlarda, kodladığım Telnet ve Nic sınıflarına da sahip olacak kadar şanslısınız <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Perl Skript zum Aktualisieren eines OSGi Bundles in Apache Felix]]></title>
<link>http://myminutes.wordpress.com/2009/11/05/perl-skript-zum-aktualisieren-eines-osgi-bundles-in-apache-felix/</link>
<pubDate>Thu, 05 Nov 2009 17:45:18 +0000</pubDate>
<dc:creator>dedeibel</dc:creator>
<guid>http://myminutes.wordpress.com/2009/11/05/perl-skript-zum-aktualisieren-eines-osgi-bundles-in-apache-felix/</guid>
<description><![CDATA[Wenn ihr Apache Felix nutzt und die telnet Shell aktiviert habt osgi.shell.telnet.port=6666 Könnt ih]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wenn ihr Apache Felix nutzt und die telnet Shell aktiviert habt</p>
<p><code>osgi.shell.telnet.port=6666</code></p>
<p>Könnt ihr mit folgendem Skript einfach eure Bundles aktualisieren.</p>
<pre class="brush: perl;">
#!/usr/bin/perl

use strict;
use warnings;

use Net::Telnet;

if (@ARGV != 2) {
        print &#34;$0: [bundle name substring] [bundle jar absolute path]\n&#34;;
        exit 1;
}

my $bname = shift;
my $bfile = shift;

my $host = 'localhost';
my $port = 6666;

sub get_bundle_id($$) {
        my ($procs, $bname) = @_;
        my @proc = grep { m/$bname/i } @$procs;
        die &#34;No bundle $bname found.&#34; unless @proc &#62; 0;
        warn &#34;Multiple bundles $bname found.&#34; if @proc &#62; 1;
        $proc[0] =~ m/^\[\s*(\d+)\s*\]/;
        return $1;
}

my $prompt = '/-&#62;/';
my $telnet = new Net::Telnet ( Timeout=&#62;10, Errmode=&#62;'die', Prompt =&#62; $prompt);
$telnet-&#62;open(Host =&#62; $host, Port =&#62; $port);
$telnet-&#62;waitfor($prompt);

my @procs = $telnet-&#62;cmd('ps');

my $bid = get_bundle_id(\@procs, $bname);
print &#34;Bundle id for $bname is $bid\n&#34;;
print &#34;Updating bundle $bid with $bfile\n&#34;;

my @result = $telnet-&#62;cmd(&#34;update $bid file:$bfile&#34;);
print &#34;Error: &#34;, $result[0], &#34;\n&#34; if (@result &#62; 0 &#38;&#38; $result[0] =~ m/unable&#124;error&#124;fail/i);
print &#34;done.\n&#34;;
</pre>
<p>Dies kann auch einfach in Maven integriert werden, dazu muss einfach sicher gestellt werden, dass das Skript im PATH vorhanden oder der Absolute Pfad angeben wird:</p>
<pre class="brush: xml;">
&#60;!-- Directly deploy to osgi --&#62;
&#60;plugin&#62;
     &#60;artifactId&#62;exec-maven-plugin&#60;/artifactId&#62;
     &#60;groupId&#62;org.codehaus.mojo&#60;/groupId&#62;
     &#60;version&#62;1.1&#60;/version&#62;
     &#60;executions&#62;
	     &#60;execution&#62;
	       &#60;phase&#62;install&#60;/phase&#62;
	       &#60;goals&#62;
	         &#60;goal&#62;exec&#60;/goal&#62;
	       &#60;/goals&#62;
	     &#60;/execution&#62;
     &#60;/executions&#62;
     &#60;configuration&#62;
       &#60;executable&#62;osgi_deploy.pl&#60;/executable&#62;
       &#60;arguments&#62;
           &#60;argument&#62;${project.name}&#60;/argument&#62;
           &#60;argument&#62;${project.build.directory}/${project.build.finalName}.jar&#60;/argument&#62;
       &#60;/arguments&#62;
    &#60;/configuration&#62;
&#60;/plugin&#62;
</pre>
<p>Die Ausführung:</p>
<pre class="brush: plain;">
$ mvn exec:exec
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Building MyProject
[INFO]    task-segment: [exec:exec]
[INFO] ------------------------------------------------------------------------
[INFO] [exec:exec {execution: default-cli}]
[INFO] Bundle id for MyProject is 5
[INFO] Updating bundle 5 with /home/bpeter/workspaces/MyProject/trunk/myproject/target/myproject.jar
[INFO] done.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO] ------------------------------------------------------------------------
</pre>
<p>hf</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cisco Router' lara Bağlanmak İçin SSH Kullanımı]]></title>
<link>http://direnconen.wordpress.com/2009/10/30/cisco-router-lara-baglanmak-icin-ssh-kullanimi/</link>
<pubDate>Fri, 30 Oct 2009 21:58:28 +0000</pubDate>
<dc:creator>direnconen</dc:creator>
<guid>http://direnconen.wordpress.com/2009/10/30/cisco-router-lara-baglanmak-icin-ssh-kullanimi/</guid>
<description><![CDATA[Günümüzde saldırı tekniklerinin çok fazla gelişmesi ile birlikte güvenlik önlemlerinin alınması gere]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Günümüzde saldırı tekniklerinin çok fazla gelişmesi ile birlikte güvenlik önlemlerinin alınması gerekliliği bir kat daha artmıştır. Artık komut satırı destekleyen bütün bilgisayar sistemleri, ağ cihazları vb sistemlere <a href="http://en.wikipedia.org/wiki/Secure_Shell">Secure Shell &#8211; SSH</a> (güvenli komut satırı istemi ile bağlanma) ile bağlanarak cihaza ulaşım güvenli bir hale getirilebilmektedir. Telnet gibi bağlantı yöntemlerinde kullanıcı adı ve parola gibi bilgiler açık metin olarak ağ üzerinde gönderilmektedir. Ancak SSH ile bağlantı yapıldığında kullanıcı adı ve parola bilgileri şifrelenerek gönderilir. Araya giren bir saldırgan Telnet bağlantısında giden gelen bilgiyi bir kaç saniyede yakalayabilirken SSH ile aktarılan veriler saldırgan için herhangi bir anlam ifade etmeyecektir. Bu yazımızda Cisco 3725 Router üzerinde SSH bağlantısını nasıl aktif hale getireceğimizi ve telnet yerine nasıl SSH kullanabileceğimizi göreceğiz.</p>
<p>Router&#62;en<br />
Router#configure terminal<br />
Router(config)#hostname Royter<br />
Royter(config)#aaa new-model<br />
Royter(config)#username kullanici password 0 P4r0l4<br />
!crypto ile anahtar yaratabilmek için routera domain adı girmek gerekir<br />
Royter(config)#ip domain-name ssh.gnome.com<br />
!alttaki komut ile bir anahtar yaratılır. varsayılan değer 512 bit değerindedir. 1024 bit lik anahtar yaratabilirsiniz. Ancak 2048 gibi yüksek bir değer seçerseniz anahtarın yaratılması uzun sürebilir.<br />
Royter(config)#crypto key generate rsa<br />
Royter(config)#ip ssh time-out 60<br />
Royter(config)#ip ssh authentication-retries 2<br />
Royter(config)#line vty 0 4<br />
! Aşağıdaki satırda vty nin artık telnet için değil SSH için kullanılacağı belirtiliyor.<br />
Royter(config-line)#transport input SSH<br />
Royter(config-line)#exit<br />
!Bağlantı gerçekleştikten sonra Enable komutu ile privileged moda geçmek gerekir. Bu nedenle mutlaka Enable parolası girilmelidir. Bu parolayı secret ile kullanmak bu parolanın konfigürasyon içerisinde şifreli bir şekilde saklanmasını sağlar.<br />
Royter(config)#enable secret cisco<br />
Router#exit</p>
<p>Bu aşamadan sonra Router&#8217; a herhangi bir IP adresinden Putty aracı ile SSH bağlantısı oluşturulabilir.</p>
<p><img class="alignleft size-medium wp-image-6" title="Putty" src="http://direnconen.wordpress.com/files/2009/10/0011.jpg?w=300" alt="Putty" width="300" height="266" /> </p>
<p><img class="alignleft size-medium wp-image-7" title="SSH Anahtar Onaylama" src="http://direnconen.wordpress.com/files/2009/10/0021.jpg?w=300" alt="SSH Anahtar Onaylama" width="300" height="227" /> </p>
<p><img class="alignleft size-medium wp-image-5" title="Kara Ekran" src="http://direnconen.wordpress.com/files/2009/10/003.jpg?w=300" alt="Kara Ekran" width="300" height="187" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Kilomux-2100/2104,Modul Multiplekser terintegrasi untuk Data,Voice dan LAN]]></title>
<link>http://want2knowaja.wordpress.com/2009/10/29/kilomux-21002104modul-multiplekser-terintegrasi-untuk-datavoice-dan-lan/</link>
<pubDate>Thu, 29 Oct 2009 13:08:16 +0000</pubDate>
<dc:creator>fariz309</dc:creator>
<guid>http://want2knowaja.wordpress.com/2009/10/29/kilomux-21002104modul-multiplekser-terintegrasi-untuk-datavoice-dan-lan/</guid>
<description><![CDATA[Multiplekser ini mempunyai fitur-fitur : Modul terintegrasi yang dapat digunakan untuk data,voice ma]]></description>
<content:encoded><![CDATA[Multiplekser ini mempunyai fitur-fitur : Modul terintegrasi yang dapat digunakan untuk data,voice ma]]></content:encoded>
</item>
<item>
<title><![CDATA[Putty]]></title>
<link>http://tutwurihandayani.wordpress.com/2009/10/29/putty/</link>
<pubDate>Thu, 29 Oct 2009 05:08:20 +0000</pubDate>
<dc:creator>YMKA</dc:creator>
<guid>http://tutwurihandayani.wordpress.com/2009/10/29/putty/</guid>
<description><![CDATA[Apa sih sebenarnya Putty itu&#8230;??? Hmm&#8230; sebenarnya sayang kalo orang IT gak tau kegunaan d]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><img class="alignleft size-medium wp-image-32" style="border:0 none;margin:3px;" title="putty" src="http://tutwurihandayani.wordpress.com/files/2009/10/putty.gif?w=300" alt="putty" width="300" height="286" />Apa sih sebenarnya Putty itu&#8230;??? Hmm&#8230; sebenarnya sayang kalo orang IT gak tau kegunaan dari Putty. Begini ya&#8230;tapi sebelumnya siapkan secangkir kopi hangat dan kalo biar lebih sedap di campur dengan susu kental manis&#8230;. sehingga otak pun menjadi fresss ^_^</p>
<p style="text-align:justify;">Ok..langsung aja.. Putty merupakan salah satu software yang digunakan sebagai SSH client pada Platform Windows. Biasanya yang menggunakan software Putty adalah seorang administrator dan seorang Hacker.<!--more--></p>
<p style="text-align:justify;">Putty juga bisa digunakan untuk menjalankan PsyBNC, telnet dan lain-lain. Agar anda dapat memahami lebih jelas kegunaan dari Putty, download artikel di bawah ini (artikel dari Neotek).</p>
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;"><a href="http://adf.ly/lxx" target="_blank"><strong>Aplikasi Putty</strong></a></p>
<p style="text-align:justify;"><span style="color:#c0c0c0;"><a href="http://adf.ly/lxw" target="_blank"><strong>Artikel penggunaan Putty</strong></a></span></p>
<p style="text-align:justify;"><a href="http://adf.ly/lxv" target="_blank"><strong>PsyBNC</strong></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Basics of telnet]]></title>
<link>http://socialgoat.wordpress.com/2009/10/26/basics-of-telnet/</link>
<pubDate>Mon, 26 Oct 2009 21:11:11 +0000</pubDate>
<dc:creator>socialgoat</dc:creator>
<guid>http://socialgoat.wordpress.com/2009/10/26/basics-of-telnet/</guid>
<description><![CDATA[The Basics of TELENET Part I This Bulletin is the first in a series to cover the general procedures ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><pre style="font:normal normal normal 12px/18px 'Courier New', monospace;"><strong>The Basics of TELENET</strong>
                                  <strong>   Part I
</strong>
  This Bulletin is the first in a series to cover the general procedures of the
major data networks:

Telenet
Tymnet
Autonet
Arpanet
[More to be added]

                                  <strong> BACKGROUND</strong>
                                   ----------
  Telenet connects many large computers to itself through dedicated telephone
lines, each of these 'host computers' is assigned a node address(ie.:NPAxx).
Telenet is an international data network, connecting to computers around the
world.See the International telenet bulletin for more on this.

                                   CONNECTING
                                   ----------
  Telenet is probably the most 'user friendly' network of the four listed.  A
normal logon looks like this:  [NPA=Area code,xx=node address] You hit &#60;CR&#62;
&#60;CR&#62; [2 Returns] Telenet respnds with:TELENET NPAxx

TERMINAL=(Here you type your terminal identifier) (See the bulletin section for
       the list)

             @

  The '@' is Telenet's promt to you to go ahead.

                          <strong>  Things to do on telenet</strong>
                            -----------------------
  To connect to a node type:
                        @C NPAxx
  Telenet will atempt to connect to the computer at the node given.
  A few of the things that Telenet will say are:

NPAxx CONNECTED (You are connected to a computer)
ILLEGAL ADDRESS (Not a working node)
NPAxx NOT REACHABLE   (The computer at that node is 'DOWN')
NPAxx REFUSED  COLLECT CONNECTION(Needs a paid ID [More later]
NPAxx REJECTING (Computer is 'UP' but not available)
NPAxx NOT RESPONDING (The computer at that node is 'DOWN')

  These are most of the things that Telenet will tell you

                             <strong>  MORE THINGS TO DO</strong>
                               -----------------
  Typing an @ while in a host computer will return you to Telenet You will
still be connected to the other computer, you may:  D (to disconnect from that
computer) or TAPE (Unknown, possibly records your actions so that) (you may
look at them later)

  If you type either of the above, while not connected to a node telenet will
respond with NOT CONNECTED

                             <strong>        MISC.</strong>
                                     -----
RESET (Returns Telenet to the beggining,you must start again (with the
      &#60;CR&#62;&#60;CR&#62;)

SET (Unknown)

MAIL (To connect to GTE Telemail) It will ask for User?  and Password?

                                  <strong>   NOTES</strong>
                                     -----

  In addition to the normal area codes in NPAxx there are also other NPA's used
in Telenet, 909 and 311, for instance.

  Telenet hangs up after three disconnections from host computers, this
unfortunately is quite a PAIN in the ___ There is no way to get around this as
far as I can tell.

  The ID command in Telenet is to Identify users to the host computers.  You
must type ID (your ID#) (your password).  If you just type ID, telenet will
tell you that your ID is cleared, which means nothing.  To recieve a paid user
ID on telenet call them at:  Telenet customer service:800-336-0437 800-572-
0408(In Virginia)

                              <strong>      HACKING</strong>
                                    -------
  Telenet is very convinient for hackers as it connects many computers to your
terminal, without having to find and dial many numbers.  Start your Telehacking
by picking an areacode and then trying all the nodes in that NPA.  You will no
doubt find many interesting computers 'to work on'.

   Here are instructions for using TELENET.  There are some very basic things,
which most people already know, and some other things, which even the most
dedicated hackers have probably never even heard of.  This includes things such
as international access, etc.  Well, have fun.

                    THE TELENET CONNECTION
      INTERNATIONAL ADDRESSING/INTERNATIONAL ACCESS PROCEDURES

I. <strong> TELENET INTERNATIONAL ADDRESS FORMAT</strong>

    ---------------------------- Data Network
    &#124;                       Identification Code (DNIC)
    &#124;
    &#124;
    &#124;
    &#124;      ------------------- Area Code
    &#124;      &#124;
    &#124;      &#124;
    &#124;      &#124;    ------------- DTE Address
    &#124;      &#124;    &#124;
    &#124;      &#124;    &#124;      ----- Port Address
    &#124;      &#124;    &#124;      &#124;
    &#124;      &#124;    &#124;      &#124;
  DDDD    AAA  HHHHH   PP
                       &#124;
                       ----- Optional Subaddress
                            Field for Packet Mode DTE

Example:  Telenet        International
        -------         -------------
        212 141         3110 21200141
        909  84         3110 90900084

II.<strong>   ACCESS TO OVERSEAS PUBLIC DATA NETWORKS</strong>

1.  Turn on the terminal and coupler.
2.  Dial the nearest Telenet access number (See Telenet Public Dial listing).
    When you hear a high-pitched tone, place the telephone
    receiver in the coupler.

     For Data Sets (Bell 103 or 113 type), depress the data button.

3.  Type Two carriage returns (CR).
4.  Telenet will give you a port identification number and ask you
    to identify your terminal type in the two or four
    character id for your terminal followed by a carriage
    return (CR) or type carriage return (CR).

      (EX.)   TELENET
             202 DL9
             TERMINAL = AJ63(CR)

5.  After Telenet prompts with a '@' type 'ID', skip a space (SP)
    and type your password followed by a carriage return.  (Contact
    your GTE Telenet Representative to obtain a required caller
    paid ID.)

      (EX.)   @ID(SP);INTL(CR)

    Type in your password.

      (EX.)   PASSWORD = 123456(CR)

6.  After Telenet prompts with an @, type a C. skip a space and
    type the network address of the computer you wish to access,
    followed by a carriage return (CR).

      (EX.)   @C(SP)023411234567890(CR)

    Note:  Your International address will follow a format such as:

         020801234567890 for France/Transpac
         023421234567890 for United Kingdom/British Telecom
         026241234567890 for Germany/Datex-P

7.  Telenet will respond with a connection message.  You are now
    ready to begin your conversation with the host computer.

      (EX.)   (ADDRESS)CONNECTED

8.  To disconnect from your computer, log off as usual.  Telenet
    will send you a disconnected message.

      (EX.)   (ADDRESS)DISCONNECTED

    Hang up to disconnect from Telenet.

(CR) = Carriage return
(SP) = Space</pre>
<div><span style="font-family:'Courier New', monospace;font-size:small;"><span style="line-height:18px;white-space:pre;"><br />
</span></span></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Checking Network Services Using Telnet]]></title>
<link>http://miteshjlinuxtips.wordpress.com/2009/10/23/checking-network-services-using-telnet/</link>
<pubDate>Fri, 23 Oct 2009 04:18:38 +0000</pubDate>
<dc:creator>miteshsjat</dc:creator>
<guid>http://miteshjlinuxtips.wordpress.com/2009/10/23/checking-network-services-using-telnet/</guid>
<description><![CDATA[Suppose we want to check whether the web server(port 80) or any other network service is running or ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Suppose we want to check whether the web server(port 80) or any other network service is running or not, but we do not have any browsers (lynx, Firefox, IE, Netscape, &#8230;), then there is a simple way of doing that. Just telnet to that machine on the http port (port no. 80 in general).<br />
<code></p>
<pre><span style="color:#009900;">$ telnet &#60;ip_addr&#62; &#60;port_no&#62;</span></pre>
<p></code><br />
And then, give command &#8220;<span style="color:#009900;">get /</span>&#8221; (without quotes). If the webserver is running, it displays the HTML script of the homepage or basic info and closes the connection to the remote host.<br />
<code></p>
<pre><span style="color:#009900;">$ telnet wordpress.com 80 </span>
<span style="color:#000099;">Trying 76.74.254.126...
Connected to wordpress.com.
Escape character is '^]'.</span>
<span style="color:#009900;">get /</span>
<span style="color:#000099;">&#60;html&#62;
&#60;head&#62;&#60;title&#62;400 Bad Request&#60;/title&#62;&#60;/head&#62;
&#60;body bgcolor="white"&#62;
&#60;center&#62;&#60;h1&#62;400 Bad Request&#60;/h1&#62;&#60;/center&#62;
&#60;hr&#62;&#60;center&#62;nginx&#60;/center&#62;
&#60;/body&#62;
&#60;/html&#62;
Connection closed by foreign host.</span></pre>
<p></code></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Test SMTP Using Telnet]]></title>
<link>http://sladescross.wordpress.com/2009/10/22/test-smtp-using-telnet/</link>
<pubDate>Thu, 22 Oct 2009 16:51:28 +0000</pubDate>
<dc:creator>sladescross</dc:creator>
<guid>http://sladescross.wordpress.com/2009/10/22/test-smtp-using-telnet/</guid>
<description><![CDATA[http://support.microsoft.com/kb/323350 Test the SMTP Service To test the SMTP service, follow these ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://support.microsoft.com/kb/323350">http://support.microsoft.com/kb/323350</a></p>
<h3 id="tocHeadRef"><a id="Task1"></a>Test the SMTP Service</h3>
<p>To test the SMTP service, follow these steps:</p>
<ol>
<li>On a computer running Windows Server 2003, type Telnet at a command prompt, and then press ENTER.</li>
<li>At the telnet prompt, type set LocalEcho, press ENTER, and then type open &#60;<em>machinename</em>&#62; 25, and then press ENTER.
<p>The output resembles the following:</p>
<div>
<div><code></p>
<pre>220 computername.microsoft.com ESMTP Server (Microsoft Exchange Internet Mail Service 5.5.2651.58) ready</pre>
<p></code></div>
</div>
</li>
<li>Type helo me, and then press ENTER.
<p>The output resembles the following:</p>
<div>
<div><code></p>
<pre>250 OK</pre>
<p></code></div>
</div>
</li>
<li>Type mail from:email@domain.com, and then press ENTER.
<p>The output resembles the following:</p>
<div>
<div><code></p>
<pre>250 OK - mail from &#60;email@domain.com&#62;</pre>
<p></code></div>
</div>
</li>
<li>Type rcpt to:youremail@yourdomain.com, and then press ENTER.
<p>The output resembles the following:</p>
<div>
<div><code></p>
<pre>250 OK - Recipient &#60;youremail@yourdomain.com&#62;</pre>
<p></code></div>
</div>
</li>
<li>Type Data, and then press ENTER.
<p>The output resembles the following:</p>
<div>
<div><code></p>
<pre>354 Send data.  End with CRLF.CRLF</pre>
<p></code></div>
</div>
</li>
<li>Type Subject:This is a test, and then press ENTER two times.</li>
<li>Type Testing, and then press ENTER.</li>
<li>Press ENTER, type a period (.), and then press ENTER.
<p>The output resembles the following:</p>
<div>
<div><code></p>
<pre>250 OK</pre>
<p></code></div>
</div>
</li>
<li>Type quit, and then press ENTER.<br />
<h3 id="tocHeadRef"></h3>
<p>The output resembles the following:</p>
<div>
<div><code></p>
<pre>221 Closing Port / Mail queued for delivery</pre>
<p></code></div>
</div>
</li>
</ol>
<div><a href="http://sladescross.wordpress.com/wp-admin/#top"></a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[My First Week with an iPhone]]></title>
<link>http://tombenedict.wordpress.com/2009/10/21/my-first-week-with-an-iphone/</link>
<pubDate>Wed, 21 Oct 2009 21:41:19 +0000</pubDate>
<dc:creator>Tom Benedict</dc:creator>
<guid>http://tombenedict.wordpress.com/2009/10/21/my-first-week-with-an-iphone/</guid>
<description><![CDATA[I finally broke down and got an iPhone. To be fair this has been in the works for a while.  I&#8217;]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I finally broke down and got an iPhone.</p>
<p>To be fair this has been in the works for a while.  I&#8217;ve been following the development of the iPhone since the first one came out, and have a theory that it will play a fairly pivotal role in the future of personal computing and computing in general, but that&#8217;s a topic for another post.  Some time ago I made a deal with myself that if I could come up with five applications on the iPhone that would significantly change how I do KAP in the field, I would be in the market for one.  That happened a while ago, but I still held out.  When looking at something like this, it&#8217;s hard to know if the decision is being made for legitimate reasons, or simply because it&#8217;s a cool gadget.  I erred on the side of cool gadget, and waited.  It was finally a combination of three things that convinced me to get one:</p>
<ol>
<li> I was due for an upgrade on my existing cell pone</li>
<li>The <a href="http://www.att.com" target="_blank">ATT website</a> had refurbished 16GB 3G iPhones listed for $99</li>
<li>One of my co-workers let me play with her iPhone long enough to completely fall in love with it</li>
</ol>
<p>Ok, so in the end it&#8217;s still probably the cool gadget factor that pushed me over the top, but I did have five applications that I will use when I&#8217;m out KAPing:</p>
<ol>
<li><em>GPS</em> &#8211; Prior to this, I was in the market for a small handheld GPS.  I was looking long and hard at the <a href="http://www.amazon.com/DeLorme-Earthmate-PN-40-Handheld-GPS/dp/B001FVLTNA/ref=sr_1_1?ie=UTF8&#38;s=electronics&#38;qid=1256158228&#38;sr=8-1" target="_blank">DeLorme PN-40</a> for some time, but the price tag kept me from taking that plunge.  That the iPhone comes with a GPS that applications can actually access went a long way toward convincing me that this was a viable route.  The performance of the DeLorme likely exceeds what the iPhone will do, but if I was after the ultimate in accuracy I would be looking at the higher end Trimble hardware, all of which is seriously out of my price range.  And from the testing I&#8217;ve done the iPhone GPS is plenty accurate for my needs.</li>
<li><em>Google Earth</em> &#8211; When the iPhone first came out, a fellow KAPer named Cris Benton picked one up.  Shortly after, he described a particularly difficult session where he needed to fly over a rail yard in order to get his camera in position over a particular subject.  The rail yard was in use, so there was no way to walk through it.  Instead he pulled up his location on Google Earth, visually determined the direction of the wind, and given his kite&#8217;s line angle he calculated how much line he needed to let out to get his camera in the correct position.  It worked like a charm.  With the addition of the integrated GPS in the iPhone 3G, this becomes even easier.</li>
<li><em>Anemometer</em> &#8211; Yes, there is an anemometer for the iPhone.  It&#8217;s a $0.99 application, and is limited to a 0-25mph wind range, but at the cost it&#8217;s well worth it as a backup for my <a href="http://www.amazon.com/Kestrel-2000-Pocket-Thermo-Meter/dp/B001JEPJZM/ref=sr_1_1?ie=UTF8&#38;s=home-garden&#38;qid=1256158826&#38;sr=8-1-catcorr" target="_blank">Kestrel 2000</a> anemometer.  I have yet to test this in the field, but from what other people have said it&#8217;s typically good to +/- 1 knot, and switching units is trivial.  Before trusting it I plan to run it in side-by-side trials against my Kestrel.</li>
<li><em>Inclinometer</em> &#8211; The iPhone 3G has a 3-axis accelerometer built into it.  This has set the stage for a number of apps that replicate the behavior of a carpenter&#8217;s bubble level.  But for kiting I was after an inclinometer that would tell me the angle of my kite line.  Turns out there are a whole host of these as well.  The one I got was free off the iPhone App site.</li>
<li><em>Safari Web Browser</em> &#8211; The pre-paid data plan on the iPhone makes using the integrated web browser a real no-brainer.  You can&#8217;t rack up data charges by using it, so there&#8217;s no reason not to.  Also, since the Safari browser on the iPhone is a full-blown browser, you can hit practically any web site and view it the same way you would on a full-blown computer.  This lets me bring up the local wind forecast while I&#8217;m in the field, and to check current conditions at a number of weather stations to see if conditions are changing.  I can also use this to cruise Flickr when I fly at a new location to see if there are any interesting subjects nearby.</li>
</ol>
<p>In addition, there are a number of non-KAP applications I&#8217;m using for other reasons.  The notepad and alarm clock are particularly nice.  The iPhone will also take voice memos, which is great for taking notes while KAPing since writing while managing a radio and kite winder is asking for trouble.  I also installed issh, which is an inexpensive combination ssh, telnet, and VNC client.  I&#8217;m no longer in the UNIX sysadmin line of work, but I still do run machines at home and at work.  Now I can get to them from practically anywhere.  I also find I&#8217;m using the iPod functionality more than I thought I would, since all my music will fit on my iPhone.  The photo gallery application also makes it easy to pack a large number of KAP images on my iPhone so I can show them to people when they ask what I&#8217;m doing. Oh, and it&#8217;s also a pretty good phone.</p>
<p>All in all I&#8217;m more than pleased with it.  I&#8217;ve already taken the small portfolio out of my KAP bag, which saves a fair bit of weight and space.  If the anemometer works out well, I may start keeping my Kestrel at home on longer KAP hikes.  The inclinometer, GPS, Google Earth, and readily available wind forecasts are all new, and I haven&#8217;t really had a chance to see how much I will use them, or what effect they will have on my work flow in the field.  But already it&#8217;s an improvement.  Can&#8217;t beat that.</p>
<p>- Tom</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Samsung TV firmware hacking]]></title>
<link>http://hackaday.com/2009/10/18/samsung-tv-firmware-hacking/</link>
<pubDate>Sun, 18 Oct 2009 20:00:58 +0000</pubDate>
<dc:creator>Mike Szczys</dc:creator>
<guid>http://hackaday.com/2009/10/18/samsung-tv-firmware-hacking/</guid>
<description><![CDATA[[Erdem] is leading up the efforts to reverse engineer Samsung TV firmware with a project called Samy]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone size-full wp-image-17447" title="tv-firmware-hacking" src="http://hackadaycom.wordpress.com/files/2009/10/tv-firmware-hacking.png" alt="tv-firmware-hacking" width="470" height="337" /></p>
<p>[Erdem] is leading up the efforts to <a href="http://samygo.sourceforge.net/">reverse engineer Samsung TV firmware with a project called SamyGo</a>. Official Samsung firmware uses the Linux kernel, making it a familiar system to work with for many developers. So far they&#8217;ve implemented NFS and SAMBA for sharing files over the network, improved playback from USB devices, and unlocked the ability to use non-Samsung WiFi dongles.</p>
<p>In order to make changes to the system, you need to <a href="http://sourceforge.net/apps/mediawiki/samygo/index.php?title=How_to_enable_Telnet_on_samsung_TV%27s">enable a telnet connection on the device</a>. The SamyGo team accomplished this by changing an official version of the firmware in a hex editor to start the telnet daemon at boot time. This altered firmware is then flashed using Samsung&#8217;s built in upgrade system. Once telnet is enabled, non-official firmware can be manually flashed.</p>
<p>We&#8217;d love to see this project expand to other TV Brands in the future. In fact, we were looking for something like this back in June when we realized that our Sony Bravia runs a Linux kernel and can be updated via USB drive.  Be careful if you want to try this out. We can only imagine the fallout after telling your significant other that you bricked a high-priced LCD.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Transmission Control Protocol/Internet Protocol TCP-IP]]></title>
<link>http://fajarhermawan.wordpress.com/2009/10/18/transmission-control-protocolinternet-protocol-tcp-ip/</link>
<pubDate>Sun, 18 Oct 2009 14:45:27 +0000</pubDate>
<dc:creator>fajarhermawan</dc:creator>
<guid>http://fajarhermawan.wordpress.com/2009/10/18/transmission-control-protocolinternet-protocol-tcp-ip/</guid>
<description><![CDATA[TCP/IP (singkatan dari Transmission Control Protocol/Internet Protocol) adalah standar komunikasi da]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>TCP/IP (singkatan dari Transmission Control Protocol/Internet Protocol) adalah standar komunikasi data yang digunakan oleh komunitas internet dalam proses tukar-menukar data dari satu komputer ke komputer lain di dalam jaringan Internet. Protokol ini tidaklah dapat berdiri sendiri, karena memang protokol ini berupa kumpulan protokol (protocol suite). Protokol ini juga merupakan protokol yang paling banyak digunakan saat ini. Data tersebut diimplementasikan dalam bentuk perangkat lunak (software) di sistem operasi. Istilah yang diberikan kepada perangkat lunak ini adalah TCP/IP stack</p>
<p>Protokol TCP/IP dikembangkan pada akhir dekade 1970-an hingga awal 1980-an sebagai sebuah protokol standar untuk menghubungkan komputer-komputer dan jaringan untuk membentuk sebuah jaringan yang luas (WAN). TCP/IP merupakan sebuah standar jaringan terbuka yang bersifat independen terhadap mekanisme transport jaringan fisik yang digunakan, sehingga dapat digunakan di mana saja. Protokol ini menggunakan skema pengalamatan yang sederhana yang disebut sebagai alamat IP (IP Address) yang mengizinkan hingga beberapa ratus juta komputer untuk dapat saling berhubungan satu sama lainnya di Internet. Protokol ini juga bersifat routable yang berarti protokol ini cocok untuk menghubungkan sistem-sistem berbeda (seperti Microsoft Windows dan keluarga UNIX) untuk membentuk jaringan yang heterogen.</p>
<p>Protokol TCP/IP selalu berevolusi seiring dengan waktu, mengingat semakin banyaknya kebutuhan terhadap jaringan komputer dan Internet. Pengembangan ini dilakukan oleh beberapa badan, seperti halnya Internet Society (ISOC), Internet Architecture Board (IAB), dan Internet Engineering Task Force (IETF). Macam-macam protokol yang berjalan di atas TCP/IP, skema pengalamatan, dan konsep TCP/IP didefinisikan dalam dokumen yang disebut sebagai Request for Comments (RFC) yang dikeluarkan oleh IETF.</p>
<p>Arsitektur<br />
Arsitektur TCP/IP diperbandingkan dengan DARPA Reference Model dan OSI Reference Model</p>
<p>Arsitektur TCP/IP tidaklah berbasis model referensi tujuh lapis OSI, tetapi menggunakan model referensi DARPA. Seperti diperlihatkan dalam diagram, TCP/IP merngimplemenasikan arsitektur berlapis yang terdiri atas empat lapis. Empat lapis ini, dapat dipetakan (meski tidak secara langsung) terhadap model referensi OSI. Empat lapis ini, kadang-kadang disebut sebagai DARPA Model, Internet Model, atau DoD Model, mengingat TCP/IP merupakan protokol yang awalnya dikembangkan dari proyek ARPANET yang dimulai oleh Departemen Pertahanan Amerika Serikat.</p>
<p>Setiap lapisan yang dimiliki oleh kumpulan protokol (protocol suite) TCP/IP diasosiasikan dengan protokolnya masing-masing. Protokol utama dalam protokol TCP/IP adalah sebagai berikut:</p>
<p>    * Protokol lapisan aplikasi: bertanggung jawab untuk menyediakan akses kepada aplikasi terhadap layanan jaringan TCP/IP. Protokol ini mencakup protokol Dynamic Host Configuration Protocol (DHCP), Domain Name System (DNS), Hypertext Transfer Protocol (HTTP), File Transfer Protocol (FTP), Telnet, Simple Mail Transfer Protocol (SMTP), Simple Network Management Protocol (SNMP), dan masih banyak protokol lainnya. Dalam beberapa implementasi stack protokol, seperti halnya Microsoft TCP/IP, protokol-protokol lapisan aplikasi berinteraksi dengan menggunakan antarmuka Windows Sockets (Winsock) atau NetBIOS over TCP/IP (NetBT).<br />
    * Protokol lapisan antar-host: berguna untuk membuat komunikasi menggunakan sesi koneksi yang bersifat connection-oriented atau broadcast yang bersifat connectionless. Protokol dalam lapisan ini adalah Transmission Control Protocol (TCP) dan User Datagram Protocol (UDP).<br />
    * Protokol lapisan internetwork: bertanggung jawab untuk melakukan pemetaan (routing) dan enkapsulasi paket-paket data jaringan menjadi paket-paket IP. Protokol yang bekerja dalam lapisan ini adalah Internet Protocol (IP), Address Resolution Protocol (ARP), Internet Control Message Protocol (ICMP), dan Internet Group Management Protocol (IGMP).<br />
    * Protokol lapisan antarmuka jaringan: bertanggung jawab untuk meletakkan frame-frame jaringan di atas media jaringan yang digunakan. TCP/IP dapat bekerja dengan banyak teknologi transport, mulai dari teknologi transport dalam LAN (seperti halnya Ethernet dan Token Ring), MAN dan WAN (seperti halnya dial-up modem yang berjalan di atas Public Switched Telephone Network (PSTN), Integrated Services Digital Network (ISDN), serta Asynchronous Transfer Mode (ATM)).</p>
<p>[sunting] Pengalamatan</p>
<p>Protokol TCP/IP menggunakan dua buah skema pengalamatan yang dapat digunakan untuk mengidentifikasikan sebuah komputer dalam sebuah jaringan atau jaringan dalam sebuah internetwork, yakni sebagai berikut:</p>
<p>    * Pengalamatan IP: yang berupa alamat logis yang terdiri atas 32-bit (empat oktet berukuran 8-bit) yang umumnya ditulis dalam format www.xxx.yyy.zzz. Dengan menggunakan subnet mask yang diasosiasikan dengannya, sebuah alamat IP pun dapat dibagi menjadi dua bagian, yakni Network Identifier (NetID) yang dapat mengidentifikasikan jaringan lokal dalam sebuah internetwork dan Host identifier (HostID) yang dapat mengidentifikasikan host dalam jaringan tersebut. Sebagai contoh, alamat 205.116.008.044 dapat dibagi dengan menggunakan subnet mask 255.255.255.000 ke dalam Network ID 205.116.008.000 dan Host ID 44. Alamat IP merupakan kewajiban yang harus ditetapkan untuk sebuah host, yang dapat dilakukan secara manual (statis) atau menggunakan Dynamic Host Configuration Protocol (DHCP) (dinamis).<br />
    * Fully qualified domain name (FQDN): Alamat ini merupakan alamat yang direpresentasikan dalam nama alfanumerik yang diekspresikan dalam bentuk ., di mana  mengindentifikasikan jaringan di mana sebuah komputer berada, dan  mengidentifikasikan sebuah komputer dalam jaringan. Pengalamatan FQDN digunakan oleh skema penamaan domain Domain Name System (DNS). Sebagai contoh, alamat FQDN id.wikipedia.org merepresentasikan sebuah host dengan nama &#8220;id&#8221; yang terdapat di dalam domain jaringan &#8220;wikipedia.org&#8221;. Nama domain wikipedia.org merupakan second-level domain yang terdaftar di dalam top-level domain .org, yang terdaftar dalam root DNS, yang memiliki nama &#8220;.&#8221; (titik). Penggunaan FQDN lebih bersahabat dan lebih mudah diingat ketimbang dengan menggunakan alamat IP. Akan tetapi, dalam TCP/IP, agar komunikasi dapat berjalan, FQDN harus diterjemahkan terlebih dahulu (proses penerjemahan ini disebut sebagai resolusi nama) ke dalam alamat IP dengan menggunakan server yang menjalankan DNS, yang disebut dengan Name Server atau dengan menggunakan berkas hosts (/etc/hosts atau %systemroot%\system32\drivers\etc\hosts) yang disimpan di dalam mesin yang bersangkutan.</p>
<p>[sunting] Konsep dasar<br />
Broom icon.svg<br />
	Artikel ini perlu dirapikan agar memenuhi standar Wikipedia<br />
Merapikan artikel bisa berupa membagi artikel ke dalam paragraf atau wikifikasi artikel. Setelah dirapikan, tolong hapus pesan ini.<br />
[sunting] Layanan</p>
<p>Berikut ini adalah layanan tradisional yang dapat berjalan di atas protokol TCP/IP:</p>
<p>    * Pengiriman berkas (file transfer). File Transfer Protocol (FTP) memungkinkan pengguna komputer yang satu untuk dapat mengirim ataupun menerima berkas ke sebuah host di dalam jaringan. Metode otentikasi yang digunakannya adalah penggunaan nama pengguna (user name) dan [[password]], meskipun banyak juga FTP yang dapat diakses secara anonim (anonymous), alias tidak berpassword. (Keterangan lebih lanjut mengenai FTP dapat dilihat pada RFC 959.)<br />
    * Remote login. Network terminal Protocol (telnet) memungkinkan pengguna komputer dapat melakukan log in ke dalam suatu komputer di dalam suatu jaringan secara jarak jauh. Jadi hal ini berarti bahwa pengguna menggunakan komputernya sebagai perpanjangan tangan dari komputer jaringan tersebut. (Keterangan lebih lanjut mengenai Telnet dapat dilihat pada RFC 854 dan RFC 855.)<br />
    * Computer mail. Digunakan untuk menerapkan sistem surat elektronik. (Keterangan lebih lanjut mengenai e-mail dapat dilihat pada RFC 821 RFC 822.)<br />
    * Network File System (NFS). Pelayanan akses berkas-berkas yang dapat diakses dari jarak jauh yang memungkinkan klien-klien untuk mengakses berkas pada komputer jaringan, seolah-olah berkas tersebut disimpan secara lokal. (Keterangan lebih lanjut mengenai NFS dapat dilihat RFC 1001 dan RFC 1002.)<br />
    * Remote execution. Memungkinkan pengguna komputer untuk menjalankan suatu program tertentu di dalam komputer yang berbeda. Biasanya berguna jika pengguna menggunakan komputer yang terbatas, sedangkan ia memerlukan sumber yg banyak dalam suatu sistem komputer.<br />
      Ada beberapa jenis remote execution, ada yang berupa perintah-perintah dasar saja, yaitu yang dapat dijalankan dalam system komputer yang sama dan ada pula yg menggunakan sistem Remote Procedure Call (RPC), yang memungkinkan program untuk memanggil subrutin yang akan dijalankan di sistem komputer yg berbeda. (sebagai contoh dalam Berkeley UNIX ada perintah rsh dan rexec.)<br />
    * Name server yang berguna sebagai penyimpanan basis data nama host yang digunakan pada Internet (Keterangan lebih lanjut dapat dilihat pada RFC 822 dan RFC 823 yang menjelaskan mengenai penggunaan protokol name server yang bertujuan untuk menentukan nama host di Internet.)</p>
<p>[sunting] Request for Comments</p>
<p>RFC (Request For Comments) merupakan standar yang digunakan dalam Internet, meskipun ada juga isinya yg merupakan bahan diskusi ataupun omong kosong belaka. Diterbitkan oleh IAB yang merupakan komite independen yang terdiri atas para peneliti dan profesional yang mengerti teknis, kondisi dan evolusi Internet. Sebuah surat yg mengikuti nomor RFC menunjukan status RFC :</p>
<p>    * S: Standard, standar resmi bagi internet<br />
    * DS: Draft standard, protokol tahap akhir sebelum disetujui sebagai standar<br />
    * PS: Proposed Standard, protokol pertimbangan untuk standar masa depan<br />
    * I: Informational, berisikan bahan-bahan diskusi yg sifatnya informasi<br />
    * E: Experimental, protokol dalam tahap percobaan tetapi bukan pada jalur standar.<br />
    * H: Historic, protokol-protokol yg telah digantikan atau tidak lagi dipertimbankan utk standarisasi.</p>
<p>[sunting] Bagaimanakah bentuk arsitektur dari TCP/IP itu ?</p>
<p>Dikarenakan TCP/IP adalah serangkaian protokol di mana setiap protokol melakukan sebagian dari keseluruhan tugas komunikasi jaringan, maka tentulah implementasinya tak lepas dari arsitektur jaringan itu sendiri. Arsitektur rangkaian protokol TCP/IP mendifinisikan berbagai cara agar TCP/IP dapat saling menyesuaikan.</p>
<p>Karena TCP/IP merupakan salah satu lapisan protokol Model OSI, berarti bahwa hierarki TCP/IP merujuk kepada 7 lapisan OSI tersebut. Tiga lapisan teratas biasa dikenal sebagai &#8220;upper level protocol&#8221; sedangkan empat lapisan terbawah dikenal sebagai &#8220;lower level protocol&#8221;. Tiap lapisan berdiri sendiri tetapi fungsi dari masing-masing lapisan bergantung dari keberhasilan operasi layer sebelumnya. Sebuah lapisan pengirim hanya perlu berhubungan dengan lapisan yang sama di penerima (jadi misalnya lapisan data link penerima hanya berhubungan dengan lapisan data link pengirim) selain dengan satu layer di atas atau di bawahnya (misalnya lapisan network berhubungan dengan lapisan transport di atasnya atau dengan lapisan data link di bawahnya).</p>
<p>Model dengan menggunakan lapisan ini merupakan sebuah konsep yang penting karena suatu fungsi yang rumit yang berkaitan dengan komunikasi dapat dipecahkan menjadi sejumlah unit yang lebih kecil. Tiap lapisan bertugas memberikan layanan tertentu pada lapisan diatasnya dan juga melindungi lapisan diatasnya dari rincian cara pemberian layanan tersebut. Tiap lapisan harus transparan sehingga modifikasi yang dilakukan atasnya tidak akan menyebabkan perubahan pada lapisan yang lain. Lapisan menjalankan perannya dalam pengalihan data dengan mengikuti peraturan yang berlaku untuknya dan hanya berkomunikasi dengan lapisan yang setingkat. Akibatnya sebuah layer pada satu sistem tertentu hanya akan berhubungan dengan lapisan yang sama dari sistem yang lain. Proses ini dikenal sebagai Peer process. Dalam keadaan sebenarnya tidak ada data yang langsung dialihkan antar lapisan yang sama dari dua sistem yang berbeda ini. Lapisan atas akan memberikan data dan kendali ke lapisan dibawahnya sampai lapisan yang terendah dicapai. Antara dua lapisan yang berdekatan terdapat interface (antarmuka). Interface ini mendifinisikan operasi dan layanan yang diberikan olehnya ke lapisan lebih atas. Tiap lapisan harus melaksanakan sekumpulan fungsi khusus yang dipahami dengan sempurna. Himpunan lapisan dan protokol dikenal sebagai &#8220;arsitektur jaringan&#8221;.</p>
<p>Alamat IP (Internet Protocol Address atau sering disingkat IP) adalah deretan angka biner antar 32-bit sampai 128-bit yang dipakai sebagai alamat identifikasi untuk tiap komputer host dalam jaringan Internet. Panjang dari angka ini adalah 32-bit (untuk IPv4 atau IP versi 4), dan 128-bit (untuk IPv6 atau IP versi 6) yang menunjukkan alamat dari komputer tersebut pada jaringan Internet berbasis TCP/IP.</p>
<p>Sistem pengalamatan IP ini terbagi menjadi dua, yakni:</p>
<p>    * IP versi 4 (IPv4)<br />
    * IP versi 6 (IPv6)</p>
<p>[sunting] Perbandingan Alamat IPv6 dan IPv4</p>
<p>Tabel berikut menjelaskan perbandingan karakteristik antara alamat IP versi 4 dan alamat IP versi 6.<br />
Kriteria 	Alamat IP versi 4 	Alamat IP versi 6<br />
Panjang alamat 	32 bit 	128 bit<br />
Jumlah total host (teoritis) 	232=±4 miliar host 	2128<br />
Menggunakan kelas alamat 	Ya, kelas A, B, C, D, dan E.<br />
Belakangan tidak digunakan lagi, mengingat telah tidak relevan dengan perkembangan jaringan Internet yang pesat. 	Tidak<br />
Alamat multicast 	Kelas D, yaitu 224.0.0.0/4 	Alamat multicast IPv6, yaitu FF00:/8<br />
Alamat broadcast 	Ada 	Tidak ada<br />
Alamat yang belum ditentukan 	0.0.0.0 	::<br />
Alamat loopback 	127.0.0.1 	::1<br />
Alamat IP publik 	Alamat IP publik IPv4, yang ditetapkan oleh otoritas Internet (IANA) 	Alamat IPv6 unicast global<br />
Alamat IP pribadi 	Alamat IP pribadi IPv4, yang ditetapkan oleh otoritas Internet 	Alamat IPv6 unicast site-local (FEC0::/48)<br />
Konfigurasi alamat otomatis 	Ya (APIPA) 	Alamat IPv6 unicast link-local (FE80::/64)<br />
Representasi tekstual 	Dotted decimal format notation 	Colon hexadecimal format notation<br />
Fungsi Prefiks 	Subnet mask atau panjang prefiks 	Panjang prefiks<br />
Resolusi alamat DNS 	A Resource Record (Single A) 	AAAA Resource Record (Quad A)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Verificare l'Apertura di porte senza un Server...]]></title>
<link>http://maxdonati.wordpress.com/2009/10/15/verificare-lapertura-di-porte-senza-un-server/</link>
<pubDate>Thu, 15 Oct 2009 18:37:10 +0000</pubDate>
<dc:creator>maxdonati</dc:creator>
<guid>http://maxdonati.wordpress.com/2009/10/15/verificare-lapertura-di-porte-senza-un-server/</guid>
<description><![CDATA[Lo sò è un controsenso solo a leggerlo, ma oggi mi è capitato di doverlo fare: spiego un pò di antef]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Lo sò è un controsenso solo a leggerlo, ma oggi mi è capitato di doverlo fare: spiego un pò di antefatto in modo da non sembrare più semo di quanto già non sembri..</p>
<p>Or bene, una delle mie attività prevede la gestione di una serie di macchine remote sparse per il territorio nazionale. Queste macchine sono dei semplici windows XP di proprietà di un grosso cliente, il quale ha dato la gestione della sua Wan ad un grosso gruppo IT italiano che chiamerò il &#8220;Gruppo X&#8221;.  Per ovvi motivi di sicurezza, e visto che su questo network ci passano informazioni non solo di mia competenza il Gruppo X <!--more-->ha abilitato sui router che mi hanno fornito, solo le porte strettamente necessarie alla mia attività di gestione.</p>
<p>A Gennaio dovremo attivare su queste macchine dei nuovi servizi, che richiederanno l&#8217;apertura di alcune porte. Ho chiesto al Team di gestione del Gruppo X di aprirmi queste porte. Avendo loro circa 2.000 router da aggiornare me lo hanno fatto in via preventiva solo 4/5 macchine, giusto per testare che la configurazione.</p>
<p>E qui nasce il problema, l&#8217;applicazione non è ancora pronta, di installare degli applicativi su queste macchine non se ne parla, come faccio a testare che la porta sia aperta e che il traffico relativo &#8220;giri&#8221; correttamente?</p>
<p>L&#8217;idea me l&#8217;ha data uno dei consulenti (un tecnico ndr&#8230;) che lavora per me&#8230; I server ftp freeware ormai si sprecano, vuoi che non ne esista uno che sia un semplice eseguibile?</p>
<p>Ebbene sì Esiste! o Meglio ne esiste più di uno, ma per il mio scopo bastava quello che ho trovato per primo ovvero <a href="http://www.xlightftpd.com/">Xlight Ftp</a> si tratta di piccolo zip da scaricare. All&#8217;interno si trova l&#8217;eseguibile Xlight.exe che una volta lanciato permette, attraverso un&#8217;interfaccia davvero banale la creazione di una serie di server virtuali, la cosa per me interessante però è che ai server posso assegnaer una qualunque porta&#8230;.</p>
<p>Da qui il gioco è fatto, basta creare un server virtuale sulla porta desiderata ed effettuarci un telnet sopra.. Il server in questione è ancora pià interessante in quanto non si limita ad aprire la sessione, ma rimanda un messaggio di benvenuto direttamente a schermo, il che dimostrerà la bontà o meno della connessione effettuata.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Telnet Pada Motorola ROKR E2]]></title>
<link>http://motodrivers.wordpress.com/2009/10/13/telnet-pada-motorola-rokr-e2/</link>
<pubDate>Tue, 13 Oct 2009 05:26:45 +0000</pubDate>
<dc:creator>motodriver</dc:creator>
<guid>http://motodrivers.wordpress.com/2009/10/13/telnet-pada-motorola-rokr-e2/</guid>
<description><![CDATA[Apakah telnet itu? Telnet adalah semacam P2k Commander di ponsel-ponsel Motorola lain atau file mana]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Apakah telnet itu?</p>
<p>Telnet adalah semacam P2k Commander di ponsel-ponsel Motorola lain atau file manager untuk mengeksplor (mengakses) file system. Tidak hanya itu, telnet banyak kegunaannya,  misal mengeksekusi skrip, menjalankan command dan banyak lainnya. Telnet merupakan langkah awal setelah flashing Firmware, serta  harus dipelajari untuk memodifikasi E2.</p>
<p>Amankah bila melakukan telnet?</p>
<p>100% Aman, tidak seperti Flashing yang kalau kita salah jalan, HP bisa matot alias mati total. Alhamdulillah Udah bolak-balik Flashing HP 99% berhasil, tapi pernah 1x (1%) E398 saya mengalami matot kurang-lebih 1 mingguan, namun pada akhirnya E398 saya normal kembali setelah mengalami koma berkepanjangan hoho.. sereem..</p>
<p>Langkah-langkah telnet adalah sebagai berikut.</p>
<p>1. Pada ponsel, Pilih Main Menu -&#62; Settings -&#62; Connection -&#62; USB Settings -&#62; USB Net.</p>
<p>2. Pada PC, pilih Start -&#62; Run -&#62; Ketik cmd dan enter. Jendela Command prompt akan muncul. Koneksikan HP dengan PC melalui kabel data, Windows akan meminta driver.</p>
<p>3. Sekarang kembali ke jendela Command prompt, ketik ipconfig dan enter. Anda akan melihat banyak tulisan, perhatikan ip address-nya. Biasanya sih 192.168.16.1.</p>
<p>4. Selanjutnya ketik telnet ip. Dimana ip adalah ip address yang telah Anda catat di langkah ketiga. Disini Anda harus menambah 1 dari angka terakhir ip di atas. Contohnya 192.168.16.1 menjadi 192.168.16.2. Jadi Anda harus mengetik telnet 192.168.16.2. Enter!</p>
<div id="attachment_30" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-30" title="cmd -&#62; enter!" src="http://motodrivers.wordpress.com/files/2009/10/11.jpg?w=300" alt="cmd -&#62; enter!" width="300" height="150" /><p class="wp-caption-text">cmd -&#62; enter!</p></div>
<p>5. Jika sukses, Anda diminta untuk login. Lalu ketikan root. Tapi jangan ditutup dulu Command promptnya.</p>
<div id="attachment_31" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-31" title="pass -&#62; root" src="http://motodrivers.wordpress.com/files/2009/10/2-abis-enter.jpg?w=300" alt="pass -&#62; root" width="300" height="149" /><p class="wp-caption-text">pass -&#62; root</p></div>
<div id="attachment_33" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-33" title="jika sukses" src="http://motodrivers.wordpress.com/files/2009/10/3-abis-root.jpg?w=300" alt="jika sukses" width="300" height="149" /><p class="wp-caption-text">jika sukses</p></div>
<p>6. Sekarang di Windows Explorer, pada bagian Go To ketik \\192.168.16.2 jendela baru pun muncul.</p>
<div id="attachment_32" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-32" title="explore -&#62; ketik \\192.168.16.2" src="http://motodrivers.wordpress.com/files/2009/10/explore-tlntb.jpg?w=300" alt="explore -&#62; ketik \\192.168.16.2" width="300" height="171" /><p class="wp-caption-text">explore -&#62; ketik \\192.168.16.2</p></div>
<p>7. Ya, itulah file system E2! Anda akan melihat banyak folder di dalamnya. Untuk tambahan, folder yang bisa ditulis ulang adalah ezx_user, ezxlocal dan mmc/mmca1 (ini memory card Anda).</p>
<p>Oke selesai, Anda siap memodifikasi ponsel Anda hoo..</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Telnet en tu PC]]></title>
<link>http://pablovidela.wordpress.com/2009/10/06/telnet-en-tu-pc/</link>
<pubDate>Tue, 06 Oct 2009 17:11:18 +0000</pubDate>
<dc:creator>Pablo Videla</dc:creator>
<guid>http://pablovidela.wordpress.com/2009/10/06/telnet-en-tu-pc/</guid>
<description><![CDATA[Hola a todos, les enseñare a iniciar el servicio de telnet para que puedan manipular su computador m]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hola a todos, les enseñare a iniciar el servicio de telnet para que puedan manipular su computador mediante una shell desde cualquier lugar con internet&#8230;.  Primero, deben tener instalado el servicio &#8230; la mayoria de los que tienen windows modificado , tipo &#8220;Windows UE&#8221; vienen sin el servicio instalado, ok, ahora vamos al lado practico.</p>
<p>Primero vamos a iniciar el servicio</p>
<p>Abrimos una shell (CMD), escribimos
<pre class="brush: plain;">net start telnet</pre>
<p>Deberia salirnos &#8220;El servicio de telnet se esta iniciando&#8221; y luego , &#8220;el servicio telnet ha sido inciado&#8221;, despues que el servicio se haya iniciado podemos conectarnos de la siguiente forma , vamos al cmd de nuevo y escribimos</p>
<pre class="brush: plain;">telnet 127.0.0.1</pre>
<p>y deberia aparecernos una pantalla con un mensaje y luego el login, el login debe ser su usuario de windows y su clave,  <strong>ES REQUISITO QUE EL USUARIO DE WINDOWS TENGA UNA CLAVE.</strong></p>
<p>Luego que iniciemos con el usuario y el pass le abrira una consola tipo cmd y podemos navegar en nuestro pc como si estuvieramos en un cmd localhost. (Como el famoso ssh)</p>
<p>Ahora les dejo las imagenes.</p>
<div class="wp-caption aligncenter" style="width: 690px"><img title="Telnet" src="http://img49.imageshack.us/img49/1555/telnet.jpg" alt="Telnet" width="680" height="843" /><p class="wp-caption-text">Telnet</p></div>
<p>Mas claro imposible, cualquier duda me dejan en los comentarios.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to monitor a remote computer]]></title>
<link>http://howtohackz.wordpress.com/2009/10/06/how-to-monitor-a-remote-computer/</link>
<pubDate>Tue, 06 Oct 2009 08:20:16 +0000</pubDate>
<dc:creator>hackerskickass</dc:creator>
<guid>http://howtohackz.wordpress.com/2009/10/06/how-to-monitor-a-remote-computer/</guid>
<description><![CDATA[Funniest Blog in the universe: The Best Blog In The Universe. (http://mcfly.xtreemhost.com come over]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://mcfly.xtreemhost.com" target="_self"><span style="color:#ff0000;font-size:large;">Funniest Blog in the universe: The Best Blog In The Universe.</span><span style="color:#ff0000;font-size:large;"><br />
(http://mcfly.xtreemhost.com come over and get your colons stomped)</span></a></p>
<p>Most of the time, it becomes necessary for us to monitor our own computer or a remote computer to keep track of the activities going on. This may be for several reasons. Especially it is most necessary for the parents to monitor their computer to keep track of their children’s activities during their absence. Some people may also require to monitor their computer to keep an eye on the activities of their spouse or partner. Today, with the advancement in the field of the software technology, it’s just a cakewalk to monitor the computer. For this all you have to do is, use a <strong>PC Monitoring Software</strong>.</p>
<p>But the job doesn’t end here. This is because there exists tons of such monitoring softwares on the market and many times we get confused which to choose and how to use them. So I have decided to make this job simpler for you, by writing this post. In this post I’ll give a detailed information about Computer monitoring softwares which include their features, advantages, installation, usage procedure and so on. To make this post interesting, let’s take up each topic in the form of question and answer.</p>
<p><a href="http://mcfly.xtreemhost.com"><span style="color:#ff0000;font-size:large;">Funniest Blog in the universe: The Best Blog In The Universe.</span><span style="color:#ff0000;font-size:large;"><br />
(http://mcfly.xtreemhost.com come over and get your colons stomped)</span></a></p>
<h3>What exactly is a Monitoring Software and how can it help me ?</h3>
<p>A computer monitoring software is just like any other software (program) which when installed, secretly monitors <strong>each and every activity</strong> that takes place on the computer. The activities such as web browsing, chatting, gaming etc. are all recorded and saved. These monitoring softwares can record each and every keystroke. So it is possible to capture usernames and passwords very easily with minimum effort. Monitoring softwares are also commonly known as <strong>Keyloggers</strong>.</p>
<h3>How can I install a monitoring software ?</h3>
<p>Installing a monitoring software is too simple. During the installation, you need to setup a <strong>secret password and hotkey combination</strong> which is required later to see the recorded data ( logs). After the installation is complete the software goes invisible, but keeps running in the background. Whenever you want to see the logs, just press the hotkey combination (ex. Shift+Ctrl+F10). Now a small window will popup asking for a password. Here you need to enter the password that was setup during the installation time. After you enter the password you’ll be able to see all the activities that took place on the computer during your absence.</p>
<p><a href="http://mcfly.xtreemhost.com" target="_self"><span style="color:#ff0000;font-size:large;">Funniest Blog in the universe: The Best Blog In The Universe.</span><span style="color:#ff0000;font-size:large;"><br />
(http://mcfly.xtreemhost.com come over and get your colons stomped)</span></a></p>
<h3>Can the person using the computer come to know about the presence of the Monitoring Software ?</h3>
<p>Most of the time it becomes impossible to detect the presence of the monitoring software. This is because, once installed it hides itself from Start menu, Program Files, Control Panel, Task manager etc. Because of it’s stealth behaviour the user can never come to know that he/she is under the presence of monitoring.</p>
<p><a href="http://mcfly.xtreemhost.com" target="_self"><span style="color:#ff0000;font-size:large;">Funniest Blog in the universe: The Best Blog In The Universe.</span><span style="color:#ff0000;font-size:large;"><br />
(http://mcfly.xtreemhost.com come over and get your colons stomped)</span></a></p>
<h3>Which Monitoring Software should I use ?</h3>
<p>There exists different flavours of these softwares and you have to choose the one that best match your needs. Here is a list of some of the best monitoring programs that I recommend.</p>
<p><strong>For Monitoring a Local PC:</strong></p>
<p>If you want to monitor a local PC (may be your own PC) then the following program is recommended.</p>
<p><a rel="nofollow" href="http://mcfly.xtreemhost.com" target="_self"><strong>Spy Agent Stealth</strong></a></p>
<p><a rel="nofollow" href="http://www.gohacking.com/recommends/spyagent_help.html" target="_blank"><strong> </strong></a></p>
<p><strong>For Monitoring a Remote PC (Also works on local PC) :</strong></p>
<p>If you want to monitor a remote PC  you may use the following programs. These programs works for remote PC as well as local PC.</p>
<p><strong><a rel="nofollow" href="http://mcfly.xtreemhost.com" target="_self">Win-Spy Monitor</a> </strong></p>
<p><a rel="nofollow" href="http://www.gohacking.com/recommends/winspy_help.html" target="_blank"><strong><br />
</strong></a></p>
<p><strong><a rel="nofollow" href="http://mcfly.xtreemhost.com" target="_self">Realtime Spy</a></strong></p>
<p><strong><a rel="nofollow" href="http://mcfly.xtreemhost.com" target="_blank">Keystroke Spy</a></strong></p>
<p><strong>For Monitoring a Network :</strong></p>
<p>The following program can be used to monitor an <strong>Entire Network of computers</strong> from one central location. This becomes handy to monitor the staff in a company or students in a school/college.</p>
<p><strong><a rel="nofollow" href="http://mcfly.xtreemhost.com" target="_self">NetVizor</a></strong></p>
<p><a href="http://mcfly.xtreemhost.com" target="_self"><span style="color:#ff0000;font-size:large;">Funniest Blog in the universe: The Best Blog In The Universe.</span><span style="color:#ff0000;font-size:large;"><br />
(http://mcfly.xtreemhost.com come over and get your colons stomped)</span></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Telnet ใน Windows 7 หายไปไหนหว่า มาดูวิธีเปิดกัน]]></title>
<link>http://minkpro.wordpress.com/2009/09/29/telnet-%e0%b9%83%e0%b8%99-windows-7-%e0%b8%ab%e0%b8%b2%e0%b8%a2%e0%b9%84%e0%b8%9b%e0%b9%84%e0%b8%ab%e0%b8%99%e0%b8%ab%e0%b8%a7%e0%b9%88%e0%b8%b2-%e0%b8%a1%e0%b8%b2%e0%b8%94%e0%b8%b9%e0%b8%a7%e0%b8%b4/</link>
<pubDate>Tue, 29 Sep 2009 04:37:40 +0000</pubDate>
<dc:creator>minkpro</dc:creator>
<guid>http://minkpro.wordpress.com/2009/09/29/telnet-%e0%b9%83%e0%b8%99-windows-7-%e0%b8%ab%e0%b8%b2%e0%b8%a2%e0%b9%84%e0%b8%9b%e0%b9%84%e0%b8%ab%e0%b8%99%e0%b8%ab%e0%b8%a7%e0%b9%88%e0%b8%b2-%e0%b8%a1%e0%b8%b2%e0%b8%94%e0%b8%b9%e0%b8%a7%e0%b8%b4/</guid>
<description><![CDATA[ตอนแรกคิดว่า ms ตัด Telnet ออกไปจาก Windows 7 แต่จริงๆแล้วไม่ใช่ แค่ปิดไว้ชั่วคราว ใครที่จะใช้งาน te]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>ตอนแรกคิดว่า ms ตัด Telnet ออกไปจาก Windows 7 แต่จริงๆแล้วไม่ใช่ แค่ปิดไว้ชั่วคราว ใครที่จะใช้งาน telnet ให้ทำตามนี้ครับ<!--more--></p>
<p>1. ไปที่ Control Panel เลือก Programs and features</p>
<p>2. เลือก Turn Windows features on or off ทางเมนูด้านซ้าย</p>
<p>3. จะมีหน้าต่างแสดงรายชื่อ Features ขึ้นมาให้เลือกติ๊กตรง Telnet Client จะเป็นการเปิดใช้งานครับผม</p>
<p>ที่่มา <a href="http://www.tech-recipes.com/rx/4230/windows-7-install-the-telnet-client/">http://www.tech-recipes.com/rx/4230/windows-7-install-the-telnet-client/</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Πώς να έχουμε τον δικό μας Chat Server]]></title>
<link>http://datalibrary.wordpress.com/2009/09/25/%cf%80%cf%8e%cf%82-%ce%bd%ce%b1-%ce%ad%cf%87%ce%bf%cf%85%ce%bc%ce%b5-%cf%84%ce%bf%ce%bd-%ce%b4%ce%b9%ce%ba%cf%8c-%ce%bc%ce%b1%cf%82-chat-server/</link>
<pubDate>Fri, 25 Sep 2009 14:23:01 +0000</pubDate>
<dc:creator>Administrator</dc:creator>
<guid>http://datalibrary.wordpress.com/2009/09/25/%cf%80%cf%8e%cf%82-%ce%bd%ce%b1-%ce%ad%cf%87%ce%bf%cf%85%ce%bc%ce%b5-%cf%84%ce%bf%ce%bd-%ce%b4%ce%b9%ce%ba%cf%8c-%ce%bc%ce%b1%cf%82-chat-server/</guid>
<description><![CDATA[Όπως γνωρίζουμε όλες οι συζήτησεις μας στο MSN και σε άλλους messenger δεν είναι καθόλου private.Όλε]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Όπως γνωρίζουμε όλες οι συζήτησεις μας στο MSN και σε άλλους messenger δεν είναι καθόλου private.Όλες οι συζητήσεις αποθηκεύονται σε mainframes και τα password που αποστέλονται είναι σε plain text (καθαρό κείμενο) χωρίς καμία κρυπτογράφηση.</p>
<p style="text-align:justify;">Αν θέλουμε λοιπόν να έχουμε μία ασφαλή συνομιλία με τους φίλους μας ή αν έχουμε κάτι να κρύψουμε τότε ίσως είναι μία καλή λύση να σκεφτούμε την περίπτωση να είμαστε εμείς ο server όπου θα γίνει η συνομιλία με αυτόν που θέλουμε.</p>
<p><span style="color:#ff0000;">Πώς μπορούμε να το κάνουμε αυτό?</span></p>
<p style="text-align:justify;">Υπάρχουν αρκετά διαθέσιμα προγράμματα για αυτήν την δουλειά όπως το <span style="color:#00ff00;">STChat</span> που μπορούμε να το βρούμε στην παρακάτω διεύθυνση:</p>
<p><a href="http://sourceforge.net/projects/stchat/">http://sourceforge.net/projects/stchat/</a></p>
<p style="text-align:justify;">Μόλις το κατεβάσουμε το κάνουμε εξαγωγή στο <span style="color:#00ff00;">C:/</span> και ο φάκελος θα έχει το όνομα <span style="color:#00ff00;">stc-0_16</span>.Ανοίγουμε το σημειωματάριο και γράφουμε το ακόλουθο:</p>
<p><span style="color:#00ff00;">@echo off<br />
CD C:/stc-0_16<br />
java stc 22</span></p>
<p style="text-align:justify;">Το σώζουμε σαν .bat αρχείο και το τρέχουμε.Τώρα για να συνδεθούμε κάνουμε <span style="color:#00ff00;">telnet IP 22</span>.Όπου IP είναι η IP μας και 22 είναι το port για τις συνόδους telnet.Δίνοντας την IP μας σε αυτόν που θέλουμε να συνομιλήσουμε και εκτελώντας την ίδια εντολή (telnet) μπορεί να συνδεθεί στον υπολογιστή μας και μέσω telnet να αρχίσουμε να συνομιλούμε.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to configure telnet to login as root]]></title>
<link>http://solarisnotions.wordpress.com/2009/09/23/how-to-configure-telnet-to-login-as-root/</link>
<pubDate>Wed, 23 Sep 2009 10:40:46 +0000</pubDate>
<dc:creator>adityadhage</dc:creator>
<guid>http://solarisnotions.wordpress.com/2009/09/23/how-to-configure-telnet-to-login-as-root/</guid>
<description><![CDATA[By default, telnet is enabled to be access by remote logins for a non-root user. To allow a root use]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>By default, telnet is enabled to be access by remote logins for a non-root user. To allow a root user to access the telnet remotely you will have to explicitly allow it.</p>
<p>This can be done by commenting the following line in the file /etc/default/login:</p>
<blockquote><p># CONSOLE=/dev/console</p></blockquote>
<p>But please understand the security threat behind this, first telnet is insecure and hence is not suggested method of remote access, instead use SSH. Besides allowing remote login for root via telnet is a big NO NO.</p>
<p>You&#8217;ve been warned!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hail to the nerds!]]></title>
<link>http://movingscene.wordpress.com/2009/09/22/hail-to-the-nerds/</link>
<pubDate>Tue, 22 Sep 2009 12:42:15 +0000</pubDate>
<dc:creator>movingscene</dc:creator>
<guid>http://movingscene.wordpress.com/2009/09/22/hail-to-the-nerds/</guid>
<description><![CDATA[When I discovered the internet some years ago, I started playing text based games on telnet, it gave]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>When I discovered the internet some years ago, I started playing text based games on telnet, it gave me the good old feeling of text based adventures on my old C64. Now I found this (thx <a href="http://ormus.info/archives/457-Star-Wars-per-Telnet.html" target="_blank">Ormus</a>), if you like old style ASCII and Star Wars, this is totally yours. Just type</p>
<blockquote><p><span style="color:#0000ff;">Windows + G</span></p>
<p><span style="color:#0000ff;">Then &#8220;cmd&#8221;</span></p>
<p><span style="color:#0000ff;">At least enter &#8220;</span>telnet towel.blinkenlights.nl&#8221; <span style="color:#0000ff;">and press RETURN</span></p>
<p><span style="color:#000000;">just wait a few seconds and the magic will start.</span></p></blockquote>
<p>Who ever this made, I salute to you!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Start Wars in Text Version via Telnet]]></title>
<link>http://linkoblast.wordpress.com/2009/09/17/start-wars-in-text-version-via-telnet/</link>
<pubDate>Thu, 17 Sep 2009 07:45:00 +0000</pubDate>
<dc:creator>linkoblast</dc:creator>
<guid>http://linkoblast.wordpress.com/2009/09/17/start-wars-in-text-version-via-telnet/</guid>
<description><![CDATA[Watch full STAR WARS movie using telnet for free. Abstract:While it&#8217;s not technically an Easte]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div>
<h1><b>Watch full STAR WARS movie using telnet for free.</b></h1>
<p>Abstract:<br />While it&#8217;s not technically an Easter egg, one of the most eye-popping tips in last Sunday&#8217;s Top 10 Easter eggs post comments was a pointer to a telnet server that broadcasts Star Wars Episode IV to your command line as animated text. You didn&#8217;t read that wrong. Give it a try: from any command line, type  and sit back to watch the show. This is the least productive thing you&#8217;ll do all day, but you know what they say about all work and no play. After the jump, see a handful of screenshots—just 4 of the 13,935 frames that make up the entire movie.</p>
<p><img src='http://lifehacker.com/assets/resources/2008/03/sw1.png'></p>
<p>Click <a href='http://tinyurl.com/2swxmb' target='_blank'>here </a>to visit the original site.</p>
<p>
<div class='zemanta-pixie'><img src='http://img.zemanta.com/pixy.gif?x-id=b8f19784-0dca-8ff6-ba3a-a4c9f4b2128b' alt=''></div>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[September 16, 8:00 to 11:30 am]]></title>
<link>http://tlcdesk.wordpress.com/2009/09/16/september-16-800-to-1130-am/</link>
<pubDate>Wed, 16 Sep 2009 16:11:49 +0000</pubDate>
<dc:creator>tlcfhsu</dc:creator>
<guid>http://tlcdesk.wordpress.com/2009/09/16/september-16-800-to-1130-am/</guid>
<description><![CDATA[A few equipment loans, and some minor computer assistance circumstances. Pretty smooth morning. A gi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A few equipment loans, and some minor computer assistance circumstances. Pretty smooth morning.  A girl should be coming in who had XP installed on her laptop yesterday.  For more info on that, refer to the September 15, 12-5 Blog.  I spent the morning working on a powerpoint  for tlc.  Thanks for asking, lol its coming along really well and I should be finished with it tomorrow.  Also, if anyone knows anything about telnet and why our firewalls aren&#8217;t letting it get through, please call Tara Goering 785-614-3120. Other than that, have a great day!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Configuring telnet in Internet Superserver in Ubuntu 9.04 Jaunty]]></title>
<link>http://ghazalisco.wordpress.com/2009/09/14/configuring-telnet-in-internet-superserver-in-ubuntu-9-04-jaunty/</link>
<pubDate>Mon, 14 Sep 2009 14:52:20 +0000</pubDate>
<dc:creator>ghazalisco</dc:creator>
<guid>http://ghazalisco.wordpress.com/2009/09/14/configuring-telnet-in-internet-superserver-in-ubuntu-9-04-jaunty/</guid>
<description><![CDATA[Configuring telnet in Internet Superserver in Ubuntu 9.04 Jaunty To install telnet server, you will ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } 		H2 { margin-bottom: 0.08in } 		H2.western { font-family: "Nimbus Sans L", "Arial", sans-serif; font-size: 14pt; font-style: italic } 		H2.cjk { font-family: "DejaVu Sans"; font-size: 14pt; font-style: italic } 		H2.ctl { font-family: "DejaVu Sans"; font-size: 14pt; font-style: italic } --></p>
<h2 style="margin-left:.4in;text-indent:-.4in;">Configuring telnet in Internet Superserver in Ubuntu 9.04 Jaunty</h2>
<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --></p>
<p style="margin-bottom:0;">To install telnet server, you will first need to install the Internet Supserserver, inetd package.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;"># apt-get install xinetd</p>
<p style="margin-bottom:0;">Setting up xinetd (1:2.3.14-7ubuntu1) &#8230;</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">* Stopping internet superserver xinetd                                                       [ OK ]</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">* Starting internet superserver xinetd                                                       [ OK ]</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Check if the xinetd service is running</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;"># ps -ef&#124;grep xinetd</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">root      8569     1  0 02:48 ?        00:00:00 /usr/sbin/xinetd -pidfile /var/run/xinetd.pid -stayalive -inetd_compat -inetd_ipv6</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Now install the telnet server package, telnetd</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;"># apt-get install telnetd</p>
<p style="margin-bottom:0;">Adding user telnetd to group utmp</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">&#8212;&#8212;&#8212; IMPORTANT INFORMATION FOR XINETD USERS &#8212;&#8212;&#8212;-</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">The following line will be added to your /etc/inetd.conf file:</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">telnet		stream	tcp	nowait	telnetd	/usr/sbin/tcpd	/usr/sbin/in.telnetd</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">If you are indeed using xinetd, you will have to convert the</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">above into /etc/xinetd.conf format, and add it manually. See</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">/usr/share/doc/xinetd/README.Debian for more information.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Suggested entry (automatically converted using itox):</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">service telnet</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">socket_type     = stream</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">protocol        = tcp</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">wait            = no</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">user            = telnetd</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">&#60;output truncated for brevity&#62;</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">telnetd will not be running as it is installed as an Internet Superserver, which means it listens to telnet requests.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Check that telnetd server is included in the /etc/inet.conf file</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">root@ismail-laptop:~# more /etc/inetd.conf</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">#&#60;off&#62;# ftp	stream	tcp	nowait	root	/usr/sbin/tcpd /usr/sbin/proftpd</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">telnet		stream	tcp	nowait	telnetd	/usr/sbin/tcpd	/usr/sbin/in.telnetd</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Now you need to create the telnetd script in /etc/xinetd.d directory:</p>
<p style="margin-bottom:0;"># cd /etc/xinetd.d</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">#vi telnetd</p>
<p style="margin-bottom:0;">service telnetd</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">{</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">disable		= no</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">type		= INTERNAL</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">socket_type	= stream</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">protocol	= tcp</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">user		= root</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">wait		= no</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">}</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Restart the xinetd services</p>
<p style="margin-bottom:0;"># /etc/init.d/./xinetd restart</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Also check that you have the in.telnetd files in /usr/sbin</p>
<p style="margin-bottom:0;"># ls /usr/sbin/ in*</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">in.proftpd  inputattach  install-docs  install-info  install-sgmlcatalog  in.telnetd  invoke-rc.d</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Now telnet to your local machine using a valid user account.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">root@ismail-laptop:~# telnet localhost</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Trying ::1&#8230;</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Connected to localhost.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Escape character is &#8216;^]&#8217;.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Ubuntu 9.04</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">ismail-laptop login: ismail</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Password:</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Last login: Wed Aug 19 03:02:08 SGT 2009 from localhost on pts/4</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Your should be able to telnet using your user account, except root.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">To allow root to telnet edit the following file:</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;"># cd /etc/pam.d/</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Edit the file called login or remote and mask out the following line:</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">#auth       [success=ok ignore=ignore user_unknown=ignore default=die]  pam_securetty.so</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Now restart the xinetd services and telnet using root:</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;"># /etc/init.d/./xinetd restart</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Ubuntu 9.04</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">ismail-laptop login: root</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Password:</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Last login: Wed Aug 19 02:26:06 SGT 2009 from localhost on pts/4</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Linux ismail-laptop 2.6.28-13-generic #45-Ubuntu SMP Tue Jun 30 19:49:51 UTC 2009 i686</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Last was Wednesday 19,August,2009 03:12:26 AM SGT on pts/4.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">root@ismail-laptop:~#</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Yes you can now telnet using root account.</p>
<p style="margin-bottom:0;">
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[SSH, Telnet, HTTP at the WLC]]></title>
<link>http://cciew.wordpress.com/2009/09/09/ssh-telnet-http-at-the-wlc/</link>
<pubDate>Wed, 09 Sep 2009 15:00:42 +0000</pubDate>
<dc:creator>cciew</dc:creator>
<guid>http://cciew.wordpress.com/2009/09/09/ssh-telnet-http-at-the-wlc/</guid>
<description><![CDATA[To verify if SSH, Telnet, HTTPS or HTTP is allowed to the WLC, please use the command : (Cisco Contr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>To verify if SSH, Telnet, HTTPS or HTTP is allowed to the WLC, please use the command :<br />
(Cisco Controller) &#62;<strong>show network summary </strong></p>
<p>RF-Network Name&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. CCIE<br />
Web Mode&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; Disable<br />
Secure Web Mode&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. <em>Enable</em><br />
Secure Web Mode Cipher-Option High&#8230;&#8230;&#8230;. Disable<br />
Secure Shell (ssh)&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. <em>Enable</em><br />
Telnet&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. <em>Enable</em><br />
Ethernet Multicast Mode&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; Disable   Mode: Ucast<br />
Ethernet Broadcast Mode&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; Disable<br />
IGMP snooping&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. Disabled<br />
IGMP timeout&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. 60 seconds<br />
User Idle Timeout&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; 300 seconds<br />
ARP Idle Timeout&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. 300 seconds<br />
ARP Unicast Mode&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. Disabled<br />
Cisco AP Default Master&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; Disable<br />
Mgmt Via Wireless Interface&#8230;&#8230;&#8230;&#8230;&#8230;.. Disable<br />
Mgmt Via Dynamic Interface&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; Disable<br />
Bridge MAC filter Config&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. Enable<br />
Bridge Security Mode&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; EAP<br />
Over The Air Provisioning of AP&#8217;s&#8230;&#8230;&#8230;.. Enable<br />
Apple Talk &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; Disable<br />
AP Fallback &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. Enable<br />
&#8211;More&#8211; or (q)uit<br />
Web Auth Redirect Ports &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. 80<br />
Fast SSID Change &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; Disabled<br />
802.3 Bridging &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. Disable</p>
<p>To enable/disable SSH :<br />
(Cisco Controller) &#62;<strong>config network ssh enable </strong></p>
<p>To enable/disable Telnet :<br />
(Cisco Controller) &#62;<strong>config network telnet enable </strong></p>
<p>To enable/disable HTTP :<br />
(Cisco Controller) &#62;<strong>config network http enable </strong></p>
<p>To enable/disable HTTPS :<br />
(Cisco Controller) &#62;<strong>config network https enable </strong></p>
<p>To prevent that wireless client can configure the WLC :<br />
(Cisco Controller) &#62;<strong>config network mgmt-via-wireless disable</strong></p>
<p>To prevent that devices on the same VLAN as the controller can access the management protocols.<br />
(Cisco Controller) &#62;<strong>config network mgmt-via-dynamic-interface enable</strong></p>
<p>The management interface is always reachable (Unless you use ACL Filters.) but without any login prompt.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
