Tuesday, August 4, 2015

Unknown network connection win 7

This happened when windows repair occurs some services are not running..
specially this services
"
Network Location Awareness service terminated with service-specific error %%-1073741288
"

if you try to manually run this on windows services. it is access deined.

then just try to run on command line.. and run as administrator

then type

net localgroup administrators localservice /add
net localgroup administrators networkservice /add


after successfully added just reboot.

Tuesday, September 11, 2012

Policy Based Routing on Cisco Catalyst 3750

I want to share how I configured basic configuration Policy Based Routing (PBR) on Cisco.

To give you an idea here is a sample diagram how the PBR works.
This is a setup of network with 2 ISP, if you want to separate the users for using different ISP.

You can use Router as your PBR, in my case I used Cisco Catalyst 3750 as my PBR to decide where the packet will pass thru.

Config on cataly 3750

STEP 1. First set your Vlan SVI's
!

interface Vlan2
 ip address 10.2.0.1 255.255.0.0
!
interface Vlan4
 ip address 10.4.0.1 255.255.0.0
!
interface Vlan3
 ip address 10.5.0.1 255.255.0.0
!
interface Vlan5
 ip address 10.5.0.1 255.255.0.0
!

STEP 2. Create Access-list, for filtering
access-list 10 permit 10.2.0.0 0.0.255.255
access-list 10 permit 10.4.0.0 0.0.255.255
access-list 20 permit 10.3.0.0 0.0.255.255
access-list 20 permit 10.5.0.0 0.0.255.255

STEP 3. Now create Route-map;

route-map routetoISP1 permit 10
 match ip address 10
 set ip next-hop 10.0.0.1
!
route-map routetoISP2 permit 20
 match ip address 20
 set ip next-hop 10.0.0.2
!

and now for here put the MAGIC!


!
interface Vlan2
 ip address 10.2.0.1 255.255.0.0
 ip policy route-map routetoISP1
!
interface Vlan4
 ip address 10.4.0.1 255.255.0.0
 ip policy route-map routetoISP1
!
interface Vlan3
 ip address 10.5.0.1 255.255.0.0
 ip helper-address 10.0.0.4
 ip policy route-map routetoISP2
!
interface Vlan5
 ip address 10.5.0.1 255.255.0.0
 ip policy route-map routetoISP2
!


Here is the final config.


!
interface Vlan2
 ip address 10.2.0.1 255.255.0.0
 ip policy route-map routetoISP1
!
interface Vlan4
 ip address 10.4.0.1 255.255.0.0
 ip policy route-map routetoISP1
!
interface Vlan3
 ip address 10.5.0.1 255.255.0.0
 ip helper-address 10.0.0.4
 ip policy route-map routetoISP2
!
interface Vlan5
 ip address 10.5.0.1 255.255.0.0
 ip policy route-map routetoISP2
!
ip route 0.0.0.0 0.0.0.0 10.0.0.1
!
access-list 10 permit 10.2.0.0 0.0.255.255
access-list 10 permit 10.4.0.0 0.0.255.255
access-list 20 permit 10.3.0.0 0.0.255.255
access-list 20 permit 10.5.0.0 0.0.255.255
route-map routetoISP1 permit 10
 match ip address 10
 set ip next-hop 10.0.0.1
!
route-map routetoISP2 permit 20
 match ip address 20
 set ip next-hop 10.0.0.2
!


Monday, September 10, 2012

Windows forgot password revealed

Many us having trouble cracking and finding solution to reset our user password, we do sometimes if we are sick and tired of remembering password is to format the whole bunch of computer. Here is the simplest way to reset your password, admin or whatever user in on your computer.

Step 1. reboot your computer and PRESS F8 then select safemode command prompt

Step 2. Do this and hit Enter

if you want to do white hack.. do this :)

THATS IT!!

Sunday, September 9, 2012

Profit Clicking.. Profit Making

Almost a month of waiting now they are on Beta... We are all excited... I hope you are excited to curious join now!

Sunday, September 2, 2012

The Billionaire, top secret

Worth watching.. 26 Yr old Billionaire very very inspiring movie specially to those young aspiring entrepreneur.

Wednesday, August 22, 2012