Skip to main content

Add Route di Windows Xp

Tut Add route di windows Xp....
Masuk ke command prompt (Start >> Run >> ketik "cmd >> ok )
ketik "route print" untuk perintah melihat informasi tabel routing..:D

C:\Documents and Settings\aURieLLy>route print
===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...00 ff a1 ba e5 36 ...... TAP-Win32 Adapter V9 - VirtualBox Bridged Networ
king Driver Miniport
0x3 ...00 ff 42 5c 1b 96 ...... TAP-Win32 Adapter V9 #2 - VirtualBox Bridged Net
working Driver Miniport
0x10005 ...44 45 53 54 4f 53 ...... Kerio Virtual Network Adapter
0x10006 ...00 f1 d0 00 f1 d0 ...... GlobeTrotter HSxPA - Network Interface - Vir
tualBox Bridged Networking Driver Miniport
===========================================================================
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 10.159.65.113 10.159.65.111 30
10.159.65.0 255.255.255.0 10.159.65.111 10.159.65.111 30
10.159.65.111 255.255.255.255 127.0.0.1 127.0.0.1 30
10.255.255.255 255.255.255.255 10.159.65.111 10.159.65.111 30
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
169.254.0.0 255.255.0.0 169.254.146.14 169.254.146.14 20
169.254.146.14 255.255.255.255 127.0.0.1 127.0.0.1 20
169.254.255.255 255.255.255.255 169.254.146.14 169.254.146.14 20
224.0.0.0 240.0.0.0 10.159.65.111 10.159.65.111 30
224.0.0.0 240.0.0.0 169.254.146.14 169.254.146.14 20
255.255.255.255 255.255.255.255 10.159.65.111 10.159.65.111 1
255.255.255.255 255.255.255.255 10.159.65.111 2 1
255.255.255.255 255.255.255.255 10.159.65.111 3 1
255.255.255.255 255.255.255.255 169.254.146.14 169.254.146.14 1
Default Gateway: 10.159.65.113
===========================================================================
Persistent Routes:
none

ketik "route /?" untuk melihat command2 route....:D

C:\Documents and Settings\aURieLLy>route /?

Manipulates network routing tables.

ROUTE [-f] [-p] [command [destination]
[MASK netmask] [gateway] [METRIC metric] [IF interface]

-f Clears the routing tables of all gateway entries. If this is
used in conjunction with one of the commands, the tables are
cleared prior to running the command.
-p When used with the ADD command, makes a route persistent across
boots of the system. By default, routes are not preserved
when the system is restarted. Ignored for all other commands,
which always affect the appropriate persistent routes. This
option is not supported in Windows 95.
command One of these:
PRINT Prints a route
ADD Adds a route
DELETE Deletes a route
CHANGE Modifies an existing route
destination Specifies the host.
MASK Specifies that the next parameter is the 'netmask' value.
netmask Specifies a subnet mask value for this route entry.
If not specified, it defaults to 255.255.255.255.
gateway Specifies gateway.
interface the interface number for the specified route.
METRIC specifies the metric, ie. cost for the destination.

All symbolic names used for destination are looked up in the network database
file NETWORKS. The symbolic names for gateway are looked up in the host name
database file HOSTS.

If the command is PRINT or DELETE. Destination or gateway can be a wildcard,
(wildcard is specified as a star '*'), or the gateway argument may be omitted.

If Dest contains a * or ?, it is treated as a shell pattern, and only
matching destination routes are printed. The '*' matches any string,
and '?' matches any one char. Examples: 157.*.1, 157.*, 127.*, *224*.
Diagnostic Notes:
Invalid MASK generates an error, that is when (DEST & MASK) != DEST.
Example> route ADD 157.0.0.0 MASK 155.0.0.0 157.55.80.1 IF 1
The route addition failed: The specified mask parameter is invalid.
(Destination & Mask) != Destination.

Examples:

> route PRINT
> route ADD 157.0.0.0 MASK 255.0.0.0 157.55.80.1 METRIC 3 IF 2
destination^ ^mask ^gateway metric^ ^
Interface^
If IF is not given, it tries to find the best interface for a given
gateway.
> route PRINT
> route PRINT 157* .... Only prints those matching 157*
> route CHANGE 157.0.0.0 MASK 255.0.0.0 157.55.80.5 METRIC 2 IF 2

CHANGE is used to modify gateway and/or metric only.
> route PRINT
> route DELETE 157.0.0.0
> route PRINT


ketik "route ADD -p 10.159.65.0 MASK 255.255.255.0 10.159.65.111" untuk mengadd route...
NB:
*-p ->> persistent route
*10.159.65.0 ->> network destination
*255.255.255.0 ->> network mask
*10.159.65.111 ->> gateway

C:\Documents and Settings\aURieLLy>route ADD -p 10.159.65.0 MASK 255.255.255.0 10.159.65.111
C:\Documents and Settings\aURieLLy>_

skarang kita sudahh add route,untuk melihat statusnya,ketik "route print" lagii...


C:\Documents and Settings\aURieLLy>route print
===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...00 ff a1 ba e5 36 ...... TAP-Win32 Adapter V9 - VirtualBox Bridged Networ
king Driver Miniport
0x3 ...00 ff 42 5c 1b 96 ...... TAP-Win32 Adapter V9 #2 - VirtualBox Bridged Net
working Driver Miniport
0x10005 ...44 45 53 54 4f 53 ...... Kerio Virtual Network Adapter
0x10006 ...00 f1 d0 00 f1 d0 ...... GlobeTrotter HSxPA - Network Interface - Vir
tualBox Bridged Networking Driver Miniport
===========================================================================
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 10.159.65.113 10.159.65.111 30
10.159.65.0 255.255.255.0 10.159.65.111 10.159.65.111 1
10.159.65.111 255.255.255.255 127.0.0.1 127.0.0.1 30
10.255.255.255 255.255.255.255 10.159.65.111 10.159.65.111 30
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
169.254.0.0 255.255.0.0 169.254.146.14 169.254.146.14 20
169.254.146.14 255.255.255.255 127.0.0.1 127.0.0.1 20
169.254.255.255 255.255.255.255 169.254.146.14 169.254.146.14 20
224.0.0.0 240.0.0.0 10.159.65.111 10.159.65.111 30
224.0.0.0 240.0.0.0 169.254.146.14 169.254.146.14 20
255.255.255.255 255.255.255.255 10.159.65.111 10.159.65.111 1
255.255.255.255 255.255.255.255 10.159.65.111 2 1
255.255.255.255 255.255.255.255 10.159.65.111 3 1
255.255.255.255 255.255.255.255 169.254.146.14 169.254.146.14 1
Default Gateway: 10.159.65.113
===========================================================================
Persistent Routes:
Network Address Netmask Gateway Address Metric
10.159.65.0 255.255.255.0 10.159.65.111 1


liadd bagian yang tebal.nthu dahh ke-add routenya...:D
untuk menghapus route yg ditambah tersebut,ketik "route DELETE [network destination]
misal,
route DELETE 10.159.65.0


C:\Documents and Settings\aURieLLy>route DELETE 10.159.65.0

C:\Documents and Settings\aURieLLy>


skrang route yang tadi ditambah sudah terhapus,cek lagii,ketik "route print"



C:\Documents and Settings\aURieLLy>route print
===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...00 ff a1 ba e5 36 ...... TAP-Win32 Adapter V9 - VirtualBox Bridged Networ
king Driver Miniport
0x3 ...00 ff 42 5c 1b 96 ...... TAP-Win32 Adapter V9 #2 - VirtualBox Bridged Net
working Driver Miniport
0x10005 ...44 45 53 54 4f 53 ...... Kerio Virtual Network Adapter
0x10006 ...00 f1 d0 00 f1 d0 ...... GlobeTrotter HSxPA - Network Interface - Vir
tualBox Bridged Networking Driver Miniport
===========================================================================
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 10.159.65.113 10.159.65.111 30
10.159.65.111 255.255.255.255 127.0.0.1 127.0.0.1 30
10.255.255.255 255.255.255.255 10.159.65.111 10.159.65.111 30
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
169.254.0.0 255.255.0.0 169.254.146.14 169.254.146.14 20
169.254.146.14 255.255.255.255 127.0.0.1 127.0.0.1 20
169.254.255.255 255.255.255.255 169.254.146.14 169.254.146.14 20
224.0.0.0 240.0.0.0 10.159.65.111 10.159.65.111 30
224.0.0.0 240.0.0.0 169.254.146.14 169.254.146.14 20
255.255.255.255 255.255.255.255 10.159.65.111 10.159.65.111 1
255.255.255.255 255.255.255.255 10.159.65.111 2 1
255.255.255.255 255.255.255.255 10.159.65.111 3 1
255.255.255.255 255.255.255.255 169.254.146.14 169.254.146.14 1
Default Gateway: 10.159.65.113
===========================================================================
Persistent Routes:
None


liadd yang tercetak tebal.dah terhapus kan..???
monggo,happy phreaking....:D


CMIIW......:D

Comments

  1. iyo... ngelu..... next clue donk..

    ReplyDelete
  2. mantap tutornya om.

    ReplyDelete
  3. Kalau di Wins 7, gmn om...? sama nggak?

    ReplyDelete
  4. lah ini fungsinya buat apaan??
    kok ga ngaruh..

    ReplyDelete
  5. add route..??
    ya add route...
    *maybe..wkwkwkwk....:D

    ReplyDelete
  6. cuman bisa nebak neh...:P
    itu route print diatas dah di add route nya yah
    dah dari vpn, jadi durex....
    maap kalu salah, maklum nubie:)

    ReplyDelete

Post a Comment

Popular posts from this blog

Share SSH IIX

Hemmmm.... nyari2 trial VPS,buadd belajar instal VPN.dapet juga,tapi gagal instal VPNnya bingung nthu gimana ngatasinnya.hehe...:D yaa...sudah,mainan SSH aja yang gampang.. :)) monggo, Host: 111.221.40.127 User: agunkaja Pass: www.coret2an-agunk.com Port: 443,80,22 NB: kalo dah ga bisa kunak,bearti VPSnya dah disuspend sama empunya..wkwkwkw... =)) =)) ouhh iya,VPS nihh RAMnya cuman 256Mb,jadi harap maklum kalo superr lemod... =))

Verifikasi PayPal tanpa CC ato VCC

Hemm... beberapa saat yang lalu,muter2 diforum luar nemu tutor bagus bangedd.yaitu Verifikasi PayPal tanpa CC ato VCC... Tapi setelah dibaca2 ga ngerti2 juga (maklum,UN bahasa linggis ja cuman nilai 6.hehe) Truz beberapa hari kemudian diforum local ada yang share... Eghh!!menarik juga!waktu nthu mo nyoba males lagian posisi gi ga butuh banged.hehe... Lama kelama'an qo banyak yang tertarik???jadii bikin penasaran,akhirnya nyoba juga deh!ehh!!!pas mo nyoba tutornya dahh ilankkk!!! guling2 dehh!nemu sedikit pencerahan,dan akhirnya sukses!hehehe.... Gini nihh caranya... Wajib!kudu!harus!kamu cari no telp&alamat US usaha dehh map guling2.qeqe... uda dapet?? lanjut gann......!!!!! langsung TKP >> www.netspend.com buka rekening disono... masukin alamat pake hasil guling2 tadii!!! lanjutt........ masukin no telp hasil guling2 juga!!! lanjut..... ikutin step2nya ja.hehe.... bukain message2nya.nurut aja suruh ngapain.ikutin nthu!hehe... kalo uda bukain semua, ke add/manage money &