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

Surat Dari Masa Depan

6 Derajat Bumi lebih panas = kiamat Karena samudera bakal kering dan bencana makin sering YouTube - 6 Degrees Warmer: Mass Extinctiondan Six Degrees Could Change the World: National Geographic Channel Surat Masa Depan Dari Tahun 2070 Aku hidup di tahun 2070. Aku berumur 50 tahun, tetapi terlihat seperti sudah 85 tahun. Aku mengalami banyak masalah kesehatan, terutama masalah ginjal karena aku minum sangat sedikit air putih. Aku fikir aku tidak akan hidup lama lagi. Sekarang, aku adalah orang yang paling tua di lingkunganku. Aku teringat disaat aku berumur 5 tahun. Disaat semua sangat berbeda. Masih banyak pohon di hutan dan tanaman hijau di sekitar, setiap rumah punya halaman dan taman yang indah, dan aku sangat suka bermain air dan mandi sepuasnya.Sekarang, kami harus membersihkan diri hanya dengan handuk sekali pakai yang dibasahi dengan minyak mineral. Sebelumnya, rambut yang indah adalah kebanggaan semua perempuan. Sekarang, kami harus MENCUKUR HABIS rambut untuk membersihkan kepal...

Tsel Menyedihkan!!!

paiiah bener nii sekarang Tsel!!!!sring RTO... speed juga ndutt2an... tapi,untung aja ada bang noufalz yang mau bagii2 VPNnya.. jadii koneksi agak lancarr!!!hhe~ emmm~ tapii~!??sama aja laa... maklum idup dipinggirandd,jadii cuman dapet GPRS,speednya kek gini pa lagii akhir2 nii tsel sinyalnya suka ngambekk~!!!!tiba ilankk ndirii~ ga papa laa...untung masii isa dapet gr*tongan,n lbihh nyuzz ketimbang isat&luna.hha~ andaii aja dapet 3.5G pastii nyuzz2an nii~ jadii kangendd nii sama tsel jaman baru2nya bug u*p~ speed masii agak nyuzz2an,n yang pentinkk jarankk RTO~

Akalin Warnedd!!!

Igridienties : 1. Modal Nekat, muka Bego, dan Omongan.. 2. Boong ama OP [pas bayar] adalah Kunci dalam akal2an kali ini.. 3. Cari WARNET Games Online / WARNET Only Browsing [materi II] 4. BEX berapa aj support [materi II], I. BUG DI BEX VERSI LAMA DESKPRO 3.0 - Di deskpro ini ada bug atau apalah yang ternyata bisa dimanfaatin buat main gratis, dan bodohny masih ada warnet yang memakai deskpro versi ini. - Pada menu login pilih Personal. - IKUTI LANGKAH BERIKUT [TANPA MOUSE]: - Ketikkan di kolom name, SPACE 2x. - Lalu TAB. - Lalu Enter. - hal ini membuat billing keluar / exit, dan tidak terdetek di SERVER. II. CABUT KABEL LAN - Cari WARNET yang Billing nya HANYA MEN ENABLE SALAH SATU DARI PERSONAL / GAMES - Biasanya WARNET GAMES ONLINE mendisable PERSONAL karena yang dipake cuman GAMES, ATAUPUN malah kedua - duanya karena cuman pake PREPAID - WARNET yang ONLY BROWSING biasanya mendisable GAMES karena ga dibutuhin.. - Kedua siapin tempat nya yg PW "Paling Wenak" sehingga Client...