Thursday, February 28, 2013

VPN PPTP Client Configuration on Windows 7


Go to "Network and Sharing Center"

Start > Control Panel > Network and Internet > Network and Sharing Center

Click "Set up a new connection or network"


Click "Connect to a workplace" > "Next"


Click "No, create a new connection" > "Next"


Click "Use my Internet connection (VPN)"


Fill the field
Internet address: IP address or domain name of VPN server
Destination name: example: VPN Connection
Click "Don't connect now; just set it up so I can connect later"


Input "User name" and "Password".
Click "Create"


Do not connect now. Click "Close"


Back to "Network and Sharing Center"

Start > Control Panel > Network and Internet > Network and Sharing Center

Clik "Change adapter settings"


Right click at new VPN Connection icon you just made. Click "Properties"
Click "Security" Tab
Choose "Point to Point Tunneling Protocol (PPTP)" at drop down menu Type of VPN
Click "OK"


If you already done all the configuration above, you can try to connect to VPN PPTP. Click icon Network and click "Connect" at taskbar.


Congratulation you already connect to VPN PPTP.

Advanced Mikrotik Training - Traffic Control (MTCTCE)

Training: Advanced Mikrotik Training - Traffic Control (MTCTCE)
Location: Jakarta, Indonesia
Date: 5-8 April 2011 (4 days)
Organizer: CV Citraweb Nusa Infomedia (mikrotik.co.id)

Training Outline:

  • Advanced DHCP and IP Pool
  • Advanced Firewall (connection tracking, mangle, filter, nat, address-list)
  • Advanced QoS (Queue Tree, HTB, Burst)
  • Advanced Web Proxy
  • Intrusion Detection System

Very useful training for internet cafe owner and internet service provider. All you need to know about bandwidth management and firewall configurations are taught in this class.

Simple Packet Flow Diagram, first thing you need to know before configure firewall.



Class room situation, at Le Grandeur Hotel, Dusit Mangga Dua.







Putty Log

When you always using putty to get access to your device or server, it's better to create log file to keep track at what you are doing.

First open your Putty


Add your target hostname (or IP address) and choose the name of your Saved Sessions.


Klik on "Logging"
Choose "Session logging" to "All session output"
Where you will put the log file at "Log file name"
"Always append to the end of it"


Check the log file.


Wednesday, February 27, 2013

Static Route on IOS CISCO

OS: IOS



To create static route to loopback interface for this network.

First assign ip address for each interface FastEthernet0/0 and Loopback0 at each router.

router1(config)#interface FastEthernet0/0
router1(config-if)#ip address 192.168.0.1 255.255.255.252
router1(config)#interface Loopback0
router1(config-if)#ip address 172.16.0.1 255.255.255.255

router2(config)#interface FastEthernet0/0
router2(config-if)#ip address 192.168.0.2 255.255.255.252
router2(config)#interface Loopback0
router2(config-if)#ip address 172.16.0.2 255.255.255.255

To get access to Loopback0 at router2 from router1, you need to add static route at router1.
router1(config)#ip route 172.16.0.2 255.255.255.255 192.168.0.2
Test it with ping
router1#ping 172.16.0.2

For router2 to get access to Loopback0 at router1, add static route at router2.
router2(config)#ip route 172.16.0.1 255.255.255.255 192.168.0.1
Test ping again
router2#ping 172.16.0.1

Training Juniper All In One

Training: Juniper All In One
Location: Jakarta, Indonesia
Date: 2,3,9,10 February 2013 (4 days)
Organizer: ID-Networkers (id-networkers.com)

Training Outline:

1. Introduction
  • Command Line interface Review
  • Initial System configuration
2. Protocol Static router
  • Understanding static route
  • Configuring static route
3. logical-router
  • Understanding logical-router
  • Configuring logical-router
4. Routing Policy
  • Forming a Policy
  • Applying routing-policies
5. Firewall and Filter
  • Implementing Firewall Filter
  • Rate Policing
6. Protocol RIP
  • Configuring RIP
  • Applying routing-policies
7. Protocol OSPF
  • Multi Area Configuration
  • OSPF Authentication
  • OSPF Network Type
  • Configure OSPF routing policy
8. Configuring IS-IS
  • Multi-level IS-IS configuration
  • IS-IS Network Type
  • IS-IS Authentication
  • IS-IS Policy
9. Configuring BGP
   a. IBGP Configuration and Testing
  • Initial IBGP peering
  • IBGP Authentication
  • IBGP Policy
   b. EBGP Configuration and Testing
  • Initial EBGP Peering
  • EBGP Authentication
  • EBGP Policy
10. Configuring MPLS
  • LDP Signal
  • RSVP Signal
  • Traffic Protection
  • Traffic Engineering

Below is a photo taken during the lab Juniper SRX100.



Basic Mikrotik Training - Essentials (MTCNA)


Training: Basic Mikrotik Training - Essentials (MTCNA)
Location: Jakarta, Indonesia
Date: 18-21 January 2011 (4 days)
Organizer: CV Citraweb Nusa Infomedia (mikrotik.co.id)

Training Outline:
  • Introduction to Mikrotik
  • Installation and operation Mikrotik (console and Winbox)
  • Basic Firewall
  • Bridge System
  • Static Routing
  • Quality of Service (simple)
  • Wireless Concept
  • Wireless Interface : PTP & PTMP
My first MikroTik Training, this training was beyond what I expected. Training material is very solid and clear, all configuration is very easy to apply, and the trainer are very good at answering and explaining the problem given by the student.






Tuesday, February 26, 2013

Hostname on JUNOS Juniper

OS: JUNOS 8.5R1.14

To configure hostname for JUNOS

#set system host-name router1

Don't forget to commit

#commit

Check it with

#show system host-name

Friday, February 15, 2013

Change Network Device Name on CentOS

OS: CentOS 6.3

Sometimes when you make clone of a virtual machine via KVM or VMWare, network device name are automatically change from eth0 to eth1.

To show your current device name use:
#ip link show

As you can see right now mac address 00:0C:29:5E:61:F2 are set to eth1.
To change it back to eth0 use:
#ip link set eth1 name eth0

To make sure the device name did not change back to eth1 after restart, edit:
/etc/udev/rules.d/70-persistent-net.rules
You could delete the old mac address and edit the device name from eth1 to eth0



Don't forget to modify mac address at the network configuration:
/etc/sysconfig/network-scripts/ifcfg-eth0
Make sure mac address already set to new one


Turn on eth0, and check it:
#ifconfig eth0 up
#ifconfig


Source: www.banym.de