<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-554356248172693227</id><updated>2012-02-16T15:16:15.370+07:00</updated><title type='text'>Networking and Other Problem</title><subtitle type='html'>How to fix the problem of networking</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://dobelden.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://dobelden.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Dobelden</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-554356248172693227.post-1834651781117364177</id><published>2007-12-16T06:00:00.000+07:00</published><updated>2007-12-16T06:15:24.356+07:00</updated><title type='text'>Point to Point Tunnel Protocol with Mikrotik</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Description&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;PPTP is a secure tunnel for transporting IP traffic using PPP. PPTP encapsulates PPP in virtual lines that run over IP. PPTP incorporates PPP and MPPE (Microsoft Point to Point Encryption) to make encrypted links. The purpose of this protocol is to make well-managed secure connections between routers as well as between routers and PPTP clients (clients are available for and/or included in almost all OSs including Windows).&lt;br /&gt;&lt;br /&gt;PPTP includes PPP authentication and accounting for each PPTP connection. Full authentication and accounting of each connection may be done through a RADIUS client or locally.&lt;br /&gt;&lt;br /&gt;MPPE 40bit RC4 and MPPE 128bit RC4 encryption are supported.&lt;br /&gt;&lt;br /&gt;PPTP traffic uses TCP port 1723 and IP protocol GRE (Generic Routing Encapsulation, IP protocol ID 47), as assigned by the Internet Assigned Numbers Authority (IANA). PPTP can be used with most firewalls and routers by enabling traffic destined for TCP port 1723 and protocol 47 traffic to be routed through the firewall or router.&lt;br /&gt;&lt;br /&gt;PPTP connections may be limited or impossible to setup though a masqueraded/NAT IP connection. Please see the Microsoft and RFC links at the end of this section for more information.&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;h2&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="ht38410205"&gt;PPTP Client Setup&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;  Submenu level : &lt;b&gt;/interface pptp-client&lt;br /&gt;&lt;/b&gt;&lt;h3&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="ht38410207"&gt;Example&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt; To set up PPTP client named &lt;b&gt;test2&lt;/b&gt; using username &lt;b&gt;john&lt;/b&gt; with  password &lt;b&gt;john&lt;/b&gt; to connect to the &lt;b&gt;10.1.1.12&lt;/b&gt; PPTP server and use it  as the default gateway: &lt;pre&gt;[admin@MikroTik] interface pptp-client&gt; add name=test2 connect-to=10.1.1.12 \&lt;br /&gt;\... user=john add-default-route=yes password=john&lt;br /&gt;[admin@MikroTik] interface pptp-client&gt; print&lt;br /&gt;Flags: X - disabled, R - running&lt;br /&gt; 0 X  name="test2" mtu=1460 mru=1460 connect-to=10.1.1.12 user="john"&lt;br /&gt;      password="john" profile=default add-default-route=yes&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;[admin@MikroTik] interface pptp-client&gt; enable 0&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;h2&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="ht38410208"&gt;Monitoring PPTP Client&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;  Command name : &lt;b&gt;/interface pptp-client monitor&lt;br /&gt;&lt;/b&gt;&lt;h3&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="ht384102010"&gt;Example&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt; Example of an established connection: &lt;pre&gt;[admin@MikroTik] interface pptp-client&gt; monitor test2&lt;br /&gt;     uptime: 4h35s&lt;br /&gt;   encoding: MPPE 128 bit, stateless&lt;br /&gt;     status: Connected&lt;br /&gt;[admin@MikroTik] interface pptp-client&gt;&lt;br /&gt;&lt;/pre&gt;&lt;h2&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="ht384102011"&gt;PPTP Server Setup&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;  Submenu level : &lt;b&gt;/interface pptp-server server&lt;/b&gt; &lt;pre&gt;[admin@MikroTik] interface pptp-server server&gt; print&lt;br /&gt;           enabled: no&lt;br /&gt;               mtu: 1460&lt;br /&gt;               mru: 1460&lt;br /&gt;    authentication: mschap2&lt;br /&gt;   default-profile: default&lt;br /&gt;[admin@MikroTik] interface pptp-server server&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;h3&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="ht384102014"&gt;Example&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt; To enable PPTP server:&lt;br /&gt;[admin@MikroTik] interface pptp-server server&gt; set enabled=yes&lt;br /&gt;[admin@MikroTik] interface pptp-server server&gt; print             enabled: yes                 mtu: 1460                 mru: 1460      authentication: mschap2     default-profile: default&lt;br /&gt;[admin@MikroTik] interface pptp-server server&gt; &lt;h2&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="ht384102015"&gt;PPTP Server Users&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;  Submenu level : &lt;b&gt;/interface pptp-server&lt;br /&gt;&lt;/b&gt;&lt;h3&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="ht384102018"&gt;Example&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt; To add a static entry for &lt;b&gt;ex1&lt;/b&gt; user: &lt;pre&gt;[admin@MikroTik] interface pptp-server&gt; add user=ex1&lt;br /&gt;[admin@MikroTik] interface pptp-server&gt; print&lt;br /&gt;Flags: X - disabled, D - dynamic, R - running&lt;br /&gt; #     NAME                 USER         MTU   CLIENT-ADDRESS  UPTIME   ENC...&lt;br /&gt; 0  DR &lt;pptp-ex&gt;            ex           1460  10.0.0.202      6m32s    none&lt;br /&gt; 1     pptp-in1             ex1&lt;br /&gt;[admin@MikroTik] interface pptp-server&gt;&lt;br /&gt;&lt;/pre&gt; In this example an already connected user &lt;b&gt;ex&lt;/b&gt; is shown besides the one we  just added.&lt;br /&gt;&lt;h2&gt;&lt;a name="ht384102019"&gt;PPTP Router-to-Router Secure Tunnel Example&lt;/a&gt;&lt;/h2&gt;  The following is an example of connecting two Intranets using an encrypted PPTP tunnel over the Internet.&lt;br /&gt;&lt;p&gt; &lt;img src="http://www.mikrotik.com/documentation//manual_2.7/Img/pptp1.gif" /&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt; There are two routers in this example: &lt;/p&gt;&lt;ul&gt;&lt;li&gt;[HomeOffice]&lt;br /&gt;  Interface LocalHomeOffice 10.150.2.254/24&lt;br /&gt;  Interface ToInternet 192.168.80.1/24&lt;p&gt;   &lt;/p&gt;&lt;/li&gt;&lt;li&gt;[RemoteOffice]&lt;br /&gt;  Interface ToInternet 192.168.81.1/24&lt;br /&gt;  Interface LocalRemoteOffice 10.150.1.254/24 &lt;/li&gt;&lt;/ul&gt; Each router is connected to a different ISP. One router can access another router through the Internet. &lt;p&gt; On the PPTP server a user must be set up for the client: &lt;/p&gt;&lt;pre&gt;[admin@HomeOffice] ppp secret&gt; add name=ex service=pptp password=lkjrht&lt;br /&gt;local-address=10.0.103.1 remote-address=10.0.103.2&lt;br /&gt;[admin@HomeOffice] ppp secret&gt; print detail&lt;br /&gt;Flags: X - disabled&lt;br /&gt; 0   name="ex" service=pptp caller-id="" password="lkjrht" profile=default&lt;br /&gt;     local-address=10.0.103.1 remote-address=10.0.103.2 routes==""&lt;br /&gt;&lt;br /&gt;[admin@HomeOffice] ppp secret&gt;&lt;br /&gt;&lt;/pre&gt; &lt;p&gt; Then the user should be added in the PPTP server list: &lt;/p&gt;&lt;pre&gt;[admin@HomeOffice] interface pptp-server&gt; add user=ex&lt;br /&gt;[admin@HomeOffice] interface pptp-server&gt; print&lt;br /&gt;Flags: X - disabled, D - dynamic, R - running&lt;br /&gt; #     NAME                 USER         MTU   CLIENT-ADDRESS  UPTIME   ENC...&lt;br /&gt; 0     pptp-in1             ex&lt;br /&gt;[admin@HomeOffice] interface pptp-server&gt;&lt;br /&gt;&lt;/pre&gt; &lt;p&gt; And finally, the server must be enabled: &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;pre&gt;[admin@HomeOffice] interface pptp-server server&gt; set enabled=yes&lt;br /&gt;[admin@HomeOffice] interface pptp-server server&gt; print&lt;br /&gt;           enabled: yes&lt;br /&gt;               mtu: 1460&lt;br /&gt;               mru: 1460&lt;br /&gt;    authentication: mschap2&lt;br /&gt;   default-profile: default&lt;br /&gt;[admin@HomeOffice] interface pptp-server server&gt;&lt;br /&gt;&lt;/pre&gt; &lt;p&gt; Add a PPTP client to the RemoteOffice router: &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;pre&gt;[admin@RemoteOffice] interface pptp-client&gt; add connect-to=192.168.80.1 user=ex \&lt;br /&gt;\... password=lkjrht disabled=no&lt;br /&gt;[admin@RemoteOffice] interface pptp-client&gt; print&lt;br /&gt;Flags: X - disabled, R - running&lt;br /&gt; 0  R name="pptp-out1" mtu=1460 mru=1460 connect-to=192.168.80.1 user="ex"&lt;br /&gt;      password="lkjrht" profile=default add-default-route=no&lt;br /&gt;[admin@RemoteOffice] interface pptp-client&gt;&lt;br /&gt;&lt;/pre&gt;&lt;p&gt; Thus, a PPTP tunnel is created between the routers. This tunnel is like an Ethernet point-to-point connection between the routers with IP addresses 10.0.103.1 and 10.0.103.2 at each router. It enables 'direct' communication between the routers over third party networks. &lt;/p&gt;&lt;p&gt; &lt;img src="http://www.mikrotik.com/documentation//manual_2.7/Img/pptp2.gif" /&gt; &lt;/p&gt;&lt;p&gt; To route the local Intranets over the PPTP tunnel – add these routes: &lt;/p&gt;&lt;p&gt; &lt;/p&gt;[admin@HomeOffice] &gt; ip route add dst-address 10.150.1.0/24 gateway 10.0.103.2 [admin@RemoteOffice] &gt; ip route add dst-address 10.150.2.0/24 gateway 10.0.103.1  &lt;p&gt; On the PPTP server it can alternatively be done using &lt;b&gt;routes&lt;/b&gt; parameter of the user configuration: &lt;/p&gt;&lt;p&gt; &lt;/p&gt;[admin@HomeOffice] ppp secret&gt; print detail Flags: X - disabled   0   name="ex" service=pptp caller-id="" password="lkjrht" profile=default       local-address=10.0.103.1 remote-address=10.0.103.2 routes=="" &lt;br /&gt;[admin@HomeOffice] ppp secret&gt; set 0 routes="10.150.1.0/24 10.0.103.2 1" [admin@HomeOffice] ppp secret&gt; print detail Flags: X - disabled   0   name="ex" service=pptp caller-id="" password="lkjrht" profile=default       local-address=10.0.103.1 remote-address=10.0.103.2       routes="10.150.1.0/24 10.0.103.2 1" &lt;br /&gt;[admin@HomeOffice] ppp secret&gt;  &lt;p&gt; Test the PPTP tunnel connection: &lt;/p&gt;&lt;p&gt; &lt;/p&gt;[admin@RemoteOffice]&gt; /ping 10.0.103.1&lt;br /&gt;10.0.103.1 pong: ttl=255 time=3 ms&lt;br /&gt;10.0.103.1 pong: ttl=255 time=3 ms&lt;br /&gt;10.0.103.1 pong: ttl=255 time=3 ms&lt;br /&gt;&lt;br /&gt;ping interrupted 3 packets transmitted, 3 packets received, 0% packet loss round-trip min/avg/max = 3/3.0/3 ms  &lt;p&gt; Test the connection through the PPTP tunnel to the LocalHomeOffice interface: &lt;/p&gt;&lt;p&gt; &lt;/p&gt;[admin@RemoteOffice]&gt; /ping 10.150.2.254&lt;br /&gt;10.150.2.254 pong: ttl=255 time=3 ms&lt;br /&gt;10.150.2.254 pong: ttl=255 time=3 ms&lt;br /&gt;10.150.2.254 pong: ttl=255 time=3 ms&lt;br /&gt;&lt;br /&gt;ping interrupted 3 packets transmitted, 3 packets received, 0% packet loss round-trip min/avg/max = 3/3.0/3 ms  &lt;p&gt; To bridge a LAN over this secure tunnel, please see the example in the 'EoIP' section of the manual. To set the maximum speed for traffic over this tunnel, please consult the 'Queues' section. &lt;/p&gt;&lt;p&gt;  &lt;/p&gt;&lt;h2&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="ht384102020"&gt;Connecting a Remote Client via PPTP Tunnel&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt; The following example shows how to connect a computer to a remote office network over PPTP encrypted tunnel giving that computer an IP address from the same network as the remote office has (without need of bridging over eoip tunnels) &lt;p&gt; Please, consult the respective manual on how to set up a PPTP client with the software You are using. &lt;/p&gt;&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;&lt;p&gt; &lt;img src="http://www.mikrotik.com/documentation//manual_2.7/Img/pptp3.gif" /&gt; &lt;/p&gt;&lt;p&gt; The router in this example: &lt;/p&gt;&lt;ul&gt;&lt;li&gt;[RemoteOffice]&lt;br /&gt;  Interface ToInternet 192.168.81.1/24&lt;br /&gt;  Interface Office 10.150.1.254/24&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt; The client computer can access the router through the Internet. &lt;p&gt; On the PPTP server a user must be set up for the client: &lt;/p&gt;[admin@RemoteOffice] ppp secret&gt; add name=ex service=pptp password=lkjrht local-address=10.150.1.254 remote-address=10.150.1.2&lt;br /&gt;[admin@RemoteOffice] ppp secret&gt; print detail Flags: X - disabled   0   name="ex" service=pptp caller-id="" password="lkjrht" profile=default       local-address=10.150.1.254 remote-address=10.150.1.2 routes=="" &lt;br /&gt;[admin@RemoteOffice] ppp secret&gt;  &lt;p&gt; Then the user should be added in the PPTP server list: &lt;/p&gt;&lt;p&gt; &lt;/p&gt;[admin@RemoteOffice] interface pptp-server&gt; add name=FromLaptop user=ex [admin@RemoteOffice] interface pptp-server&gt; print Flags: X - disabled, D - dynamic, R - running   #     NAME                 USER         MTU   CLIENT-ADDRESS  UPTIME   ENC...   0     FromLaptop           ex [admin@RemoteOffice] interface pptp-server&gt;  &lt;p&gt; And the server must be enabled: &lt;/p&gt;&lt;p&gt; &lt;/p&gt;[admin@RemoteOffice] interface pptp-server server&gt; set enabled=yes&lt;br /&gt;[admin@RemoteOffice] interface pptp-server server&gt; print             enabled: yes                 mtu: 1460                 mru: 1460      authentication: mschap2     default-profile: default&lt;br /&gt;[admin@RemoteOffice] interface pptp-server server&gt;  &lt;p&gt; Finally, the proxy APR must be enabled on the 'Office' interface: &lt;/p&gt;&lt;p&gt; &lt;/p&gt;[admin@RemoteOffice] interface ethernet&gt; set Office arp=proxy-arp&lt;br /&gt;[admin@RemoteOffice] interface ethernet&gt; print Flags: X - disabled, R - running   #    NAME                 MTU   MAC-ADDRESS       ARP   0  R ToInternet           1500  00:30:4F:0B:7B:C1 enabled   1  R Office               1500  00:30:4F:06:62:12 proxy-arp&lt;br /&gt;[admin@RemoteOffice] interface ethernet&gt; &lt;p&gt;Source : www.mikrotik.com&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/554356248172693227-1834651781117364177?l=dobelden.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dobelden.blogspot.com/feeds/1834651781117364177/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=554356248172693227&amp;postID=1834651781117364177' title='40 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/1834651781117364177'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/1834651781117364177'/><link rel='alternate' type='text/html' href='http://dobelden.blogspot.com/2007/12/point-to-point-tunnel-protocol-with.html' title='Point to Point Tunnel Protocol with Mikrotik'/><author><name>Dobelden</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>40</thr:total></entry><entry><id>tag:blogger.com,1999:blog-554356248172693227.post-6049905494542271905</id><published>2007-12-08T13:21:00.000+07:00</published><updated>2007-12-08T13:37:10.213+07:00</updated><title type='text'>Ad-Hoc Problem at 2,4Ghz</title><content type='html'>&lt;span style="font-weight:bold;"&gt;Ad-hoc definition&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;ad hoc is a network connection method which is most often associated with wireless devices. The connection is established for the duration of one session and requires no base station. Instead, devices discover others within range to form a network for those computers. Devices may search for target nodes that are out of range by flooding the network with broadcasts that are forwarded by each node. Connections are possible over multiple nodes (multihop ad hoc network). Routing protocols then provide stable connections even if nodes are moving around. Sony's PlayStation Portable uses ad hoc connections for wireless multiplayer gaming, as does the Nintendo DS (although Nintendo does not officially use the term). Technically, all of the Game Boys used this method for linking up to each other in a wired (Game Link Cable) or wireless (Game Boy Color IR Port) mode.&lt;br /&gt;&lt;br /&gt;See IEEE 802.11, Bluetooth, or ultra-wide band. The alternative is infrastructure, with a base station that manages the network for its range. The theory behind ad hoc networks falls within the Distributed Transient Network-paradigm.&lt;br /&gt;&lt;br /&gt;The term ad hoc network can also refer to an independent basic service set (IBSS).&lt;br /&gt;&lt;br /&gt;Ad-Hoc connection can use between two NOC, if for 2,4 Ghz distance between two NOC max 30 KM LOS and freznel zone area cofered.&lt;br /&gt;&lt;br /&gt;source : wikipedia.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/554356248172693227-6049905494542271905?l=dobelden.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dobelden.blogspot.com/feeds/6049905494542271905/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=554356248172693227&amp;postID=6049905494542271905' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/6049905494542271905'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/6049905494542271905'/><link rel='alternate' type='text/html' href='http://dobelden.blogspot.com/2007/12/ad-hoc-problem-at-24ghz.html' title='Ad-Hoc Problem at 2,4Ghz'/><author><name>Dobelden</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-554356248172693227.post-9188273827766772747</id><published>2007-12-03T23:11:00.000+07:00</published><updated>2008-12-10T07:13:04.988+07:00</updated><title type='text'>Router Tools</title><content type='html'>&lt;div style="text-align: justify;"&gt;When we install the router we must set minimal configuration, usually for router any tools can use to help network administrator when he find a problem at his network&lt;br /&gt;&lt;br /&gt;thereis the tool : ( I use debian for example)&lt;br /&gt;&lt;/div&gt;&lt;ol&gt;&lt;li&gt;&lt;div style="text-align: justify;"&gt;iftop, is tool to view bandwidth usage in our network, how to use this tool? its so simple, from your console : iftop -i [your_interface_name], example : osiris:~# iftop -i eth1 , to finish you can user shortcut crtl+c.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;ifstat, like iftop but this tool view bandwidth usage by cummulative interface usage.&lt;/li&gt;&lt;ul&gt;&lt;li&gt;exampe :&lt;/li&gt;&lt;li&gt;&lt;blockquote&gt;&lt;/blockquote&gt;osiris:~# ifstat -b&lt;br /&gt;     eth0                eth2                eth1&lt;br /&gt;Kbps in  Kbps out   Kbps in  Kbps out   Kbps in  Kbps out&lt;br /&gt;  0.00      0.00   1376.12    748.64     26.32    396.27&lt;br /&gt;  0.00      0.00    934.94    561.51     51.62    211.63&lt;br /&gt;  0.00      0.00   1250.46    641.03     37.02    281.65&lt;br /&gt;  0.00      0.00   1166.52    620.98     77.10    387.06&lt;br /&gt;  0.00      0.00   1064.70    572.87     53.04    380.86&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;ipcalc tools for calculate ip address subnetting&lt;/li&gt;&lt;ul&gt;&lt;li&gt;osiris:~# rcconf&lt;br /&gt;osiris:~# ipcalc 192.168.0.24/24 -b&lt;br /&gt;Address:   192.168.0.24&lt;br /&gt;Netmask:   255.255.255.0 = 24&lt;br /&gt;Wildcard:  0.0.0.255&lt;br /&gt;=&gt;&lt;br /&gt;Network:   192.168.0.0/24&lt;br /&gt;HostMin:   192.168.0.1&lt;br /&gt;HostMax:   192.168.0.254&lt;br /&gt;Broadcast: 192.168.0.255&lt;br /&gt;Hosts/Net: 254                   Class C, Private Internet&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;links tools for browse site from console, just you write : links [your favorite site].&lt;br /&gt;&lt;/li&gt;&lt;li style="text-align: justify;"&gt;rcconf tools to activate / deactivate some service at our router, for exampe, if we wan't run apache, we can do that with this tool&lt;/li&gt;&lt;ul&gt;&lt;li&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_B_oj5-EFlVY/R1Qu8RvOlcI/AAAAAAAAAAM/aT6IkbEMyag/s1600-R/rcconf.JPG"&gt;&lt;img style="cursor: pointer;" src="http://2.bp.blogspot.com/_B_oj5-EFlVY/R1Qu8RvOlcI/AAAAAAAAAAM/yv0djrUtbBc/s320/rcconf.JPG" alt="" id="BLOGGER_PHOTO_ID_5139784687825098178" border="0" /&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;mtr, tools for trace the route of website. we usually use yahoo site for our checking internasional connection&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;Just that, but if you want to add many tools you can tray and get its from internet.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/554356248172693227-9188273827766772747?l=dobelden.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dobelden.blogspot.com/feeds/9188273827766772747/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=554356248172693227&amp;postID=9188273827766772747' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/9188273827766772747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/9188273827766772747'/><link rel='alternate' type='text/html' href='http://dobelden.blogspot.com/2007/12/router-tools.html' title='Router Tools'/><author><name>Dobelden</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_B_oj5-EFlVY/R1Qu8RvOlcI/AAAAAAAAAAM/yv0djrUtbBc/s72-c/rcconf.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-554356248172693227.post-2978394372747866666</id><published>2007-11-27T23:46:00.000+07:00</published><updated>2007-11-27T23:55:18.713+07:00</updated><title type='text'>Connection Refused</title><content type='html'>After fix &lt;a href="http://dobelden.blogspot.com/2007/11/clear-cache-log-on-debian.html"&gt;this&lt;/a&gt; problem, now that server can't open any website, such as www.hotmail.com, i thing this is cause of squid, so the squid is shutted down, but this problem can't solve.&lt;br /&gt;&lt;br /&gt;This Night I try to make the IP public form my network, cause now that IP is the IP NAT, not Public anymore.&lt;br /&gt;&lt;br /&gt;but still same, any website can't opened, any one can solve this problem?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/554356248172693227-2978394372747866666?l=dobelden.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dobelden.blogspot.com/feeds/2978394372747866666/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=554356248172693227&amp;postID=2978394372747866666' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/2978394372747866666'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/2978394372747866666'/><link rel='alternate' type='text/html' href='http://dobelden.blogspot.com/2007/11/connection-refused.html' title='Connection Refused'/><author><name>Dobelden</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-554356248172693227.post-5550634187197015334</id><published>2007-11-23T20:16:00.000+07:00</published><updated>2007-11-23T20:37:24.255+07:00</updated><title type='text'>Wifi Connection Blocked by MAC address Filter</title><content type='html'>This day... my partner set the Wireless bridge &lt;a href="http://senao.com"&gt;Senao&lt;/a&gt; for customer, but after he set the pointing to &lt;a href="http://en.wikipedia.org/wiki/Base_Transceiver_Station"&gt;BTS&lt;/a&gt;, while scanning wireless cant find our &lt;a href="http://en.wikipedia.org/wiki/SSID"&gt;SSID&lt;/a&gt;. but can look other &lt;a href="http://en.wikipedia.org/wiki/SSID"&gt;SSID&lt;/a&gt;..&lt;br /&gt;&lt;br /&gt;Setup spend much time but, the wireless bridge still could'nt get &lt;a href="http://en.wikipedia.org/wiki/SSID"&gt;SSID&lt;/a&gt;. To find the problem, i check the IP address Configuration, shaper configuration, but i cant fine what happen.&lt;br /&gt;&lt;br /&gt;after that, i remember that at my Access Point, the mac address filter is enabled hehehe... sorry my friends :), so when i disabled the filter I can &lt;a href="http://en.wikipedia.org/wiki/Ping"&gt;ping&lt;/a&gt; wireless brigde at customer.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So if we protect our network from foreign signal and mac address we can use Senao feature to set filtering mac address. so list the mac address wireless bridge our customer and put at filter option than enable this filter ==&gt;&gt; save ==&gt; reboot, why i use this option? because when i open the access point configuration i find other mac address that not at my network list and so different, i think its notebook mac address or PCMCIA mac address.&lt;br /&gt;&lt;br /&gt;Configuration for this wireless access point is very simple things, so many manual to describe howto use this wireless access point.&lt;br /&gt;&lt;br /&gt;For my Partner, sorry i forget to disable the filter..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/554356248172693227-5550634187197015334?l=dobelden.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dobelden.blogspot.com/feeds/5550634187197015334/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=554356248172693227&amp;postID=5550634187197015334' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/5550634187197015334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/5550634187197015334'/><link rel='alternate' type='text/html' href='http://dobelden.blogspot.com/2007/11/wifi-connection-blocked-by-mac-address.html' title='Wifi Connection Blocked by MAC address Filter'/><author><name>Dobelden</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-554356248172693227.post-6670629567209087090</id><published>2007-11-22T15:24:00.000+07:00</published><updated>2007-11-22T15:33:46.656+07:00</updated><title type='text'>Clear Cache log on Debian</title><content type='html'>Today my squid server has trouble, any website can opened cause blocked by squid. and when i check the log, is full, so i clear it.&lt;br /&gt;&lt;br /&gt;To Clear cache log i use this command :&lt;br /&gt;&lt;br /&gt;first : shutdown squid with command : squid -k shutdown, then&lt;br /&gt;second : remove log with command : rm -rf /var/log/squid/* , the (*) is refer to clear access.log, cache.log and store.log&lt;br /&gt;third : remake swap file : squid -z&lt;br /&gt;fourt : restart squid : /etc/init.d/squid restart&lt;br /&gt;&lt;br /&gt;after all... please redirect again the network and check squid log with : tail -f /var/log/squid/access.log.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;just that and my squid running well again :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/554356248172693227-6670629567209087090?l=dobelden.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dobelden.blogspot.com/feeds/6670629567209087090/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=554356248172693227&amp;postID=6670629567209087090' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/6670629567209087090'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/6670629567209087090'/><link rel='alternate' type='text/html' href='http://dobelden.blogspot.com/2007/11/clear-cache-log-on-debian.html' title='Clear Cache log on Debian'/><author><name>Dobelden</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-554356248172693227.post-2087393322340108556</id><published>2007-11-21T16:44:00.000+07:00</published><updated>2007-11-21T17:05:43.219+07:00</updated><title type='text'>Computer Network</title><content type='html'>&lt;b&gt;computer network&lt;/b&gt; is an interconnection of a group of computers. Networks may be classified by what is called the network layer at which they operate according to basic reference models considered as standards in the industry such as the four-layer Internet Protocol Suit model. While the seven-layer  Open Systems Interconnection (OSI)&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt; reference model is better known in academia, the majority of networks use the Internet Protocol Suite (IP) as their network model.&lt;br /&gt;&lt;br /&gt;Network Topology&lt;br /&gt;Computer networks may be classified according to the network topologyupon which the network is based, such as Bus Network, Star Network, Ring Network, Mesg Network, Star-bus network, Tree or Hierarchical topology network etc. &lt;p&gt;Network Topology signifies the way in which intelligent devices in the network see their logical relations to one another. The use of the term "logical" here is significant. That is, network topology is independent of the "physical" layout of the network. Even if networked computers are physically placed in a linear arrangement, if they are connected via a hub, the network has a Star topology, rather than a Bus Topology. In this regard the visual and operational characteristics of a network are distinct; the logical network topology is not necessarily the same as the physical layout.&lt;/p&gt;&lt;br /&gt;Source : &lt;a href="http://en.wikipedia.org/wiki/Computer_network"&gt;wikipedia&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/554356248172693227-2087393322340108556?l=dobelden.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dobelden.blogspot.com/feeds/2087393322340108556/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=554356248172693227&amp;postID=2087393322340108556' title='1 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/2087393322340108556'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/554356248172693227/posts/default/2087393322340108556'/><link rel='alternate' type='text/html' href='http://dobelden.blogspot.com/2007/11/computer-network.html' title='Computer Network'/><author><name>Dobelden</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
