Jesin's Blog

Welcome to the Portal of Technology

  • Facebook
  • GitHub
  • Google+
  • RSS
  • Twitter
  • Home
  • Categories
    • Domains
    • Linux
    • Networking
    • PHP
    • Virtualization
    • Web Design
    • Web Servers
    • Windows
  • WordPress Plugins
    • Custom Error Pages
    • HTTP Digest Authentication
    • Mailgun Email Validator
  • Toolbox
    • DNS Lookup Tool
    • htdigest Generator Tool Online
    • htpasswd Generator Tool Online
    • HTTP Headers Lookup Tool
    • MD5 Encryption Tool
    • Open Port Check Tool
    • SHA-1 Encryption Tool
    • URL Encoding/Decoding Tool
  • About Me
  • Contact Me
  • Sitemap
Home ›
Jesin A

Cisco DHCP configuration

July 31, 2011 Networking Jesin A Leave a Comment

cisco dhcp configuration

A tutorial describing how to configure a Cisco router as a DHCP server, I’ll cover DHCP reservation and excluding of IP addresses as well. A DHCP server dynamically assigns IP addresses to hosts in a network, by creating DHCP reservations we can statically assign an IP address to a host based on its MAC address. IP address exclusion prevents conflicts among devices i certain hosts are manually assigned IP addresses. When configuring DHCP reservation it should be done differently for Windows DHCP clients and Linux DHCP clients because both of them make DHCP requests differently.Continue Reading…

Tags: cisco, dhcp

Configure Cisco Console Password

July 26, 2011 Networking Jesin A 1 Comment

networking category thumbnail

A quick tutorial on how to configure a console password on Cisco routers and switches. A console password is asked for only when connecting to the Cisco device via console port so you will NOT be asked for this password when connecting to your Cisco router/switch via telnet or SSH.

Enter the following commands for configuring a console password

Router>enable
Router#configure terminal
Router(config)#line console 0
Router(config-line)#password consolepw
Router(config-line)#login
Router(config-line)#exit
Router(config)#service password-encryption

Replace the word consolepw with your preferred password. The service password-encryption command stores the password in encrypted format. Yuo can use these commands for configuring a console password on a Cisco switch too.

Tags: cisco

Configure Cisco Routers for SSH Access

July 24, 2011 Networking Jesin A 1 Comment

networking category thumbnail

In the previous article we how to configure Cisco routers and switches for telnet access and in this article we’ll see how to do the same with SSH. SSH is always preferred because it is very much secure than telnet. A quick intro on SSH, it expands to Secure Shell, listens on port 22, uses public key cryptography technique for encryption. Because SSH uses keys we need to generate one on the router. To connect using SSH from a windows system a third party software such as putty us needed, but for Linux users a SSH client is built into all distributions.Continue Reading…

Tags: cisco, ssh

Configure Cisco Routers and Switches for Telnet Access

July 21, 2011 Networking Jesin A 7 Comments

networking category thumbnail

I wanted to start from the basics as this is the first article under the category Networking. A Tutorial on How to Configure Cisco Routers and Switches for Telnet Access. Lets start with some info about the Telnet protocol – Telnet uses port 23, this protocol is used for remote administration of devices through commands. Take note that Telnet sends commands as plaintext over the network so don’t use telnet this unless you’re on a testing environment or 101% sure your network is safe from intruders.Continue Reading…

Tags: cisco

CCNA Exam Experience

July 20, 2011 Networking Jesin A 4 Comments

networking category thumbnail

A couple of months after the RHCE exam I decided to prepare for the CCNA (Cisco Certified Network Associate) exam. I had already attended CCNA classes at an institute here so I just had to prepare for the exam. It wasn’t easy as I thought, I used the CCNA: Cisco Certified Network Associate Study Guide 6th Edition by Todd Lammle, Wiley Publishing book to learn for the CCNA exam. One look at the “Written Lab” section at the end of end of each chapter made me realize my position, I wasn’t even half prepared for the exam. So my journey of exam preparation started.Continue Reading…

PHP Open Port Check Script

July 16, 2011 PHP Jesin A 7 Comments

php category thumbnail

A quick tutorial on how to check for open ports using PHP. This function fsockopen() is used in the Open Port Check Tool in this blog. You can check whether a certain port is open on a specified IP address or hostname. Before reading take note that most FREE web hosting providers disable fsockopen() function as a security measure so first check whether the function can be used. Another thing to take note is that if fsockopen is unable to connect to a port it doesn’t necessarily mean that port is closed on the remote host, your server in which the script is running might also have block the OUTBOUND connection to that port.Continue Reading…

Tags: php, php scripts

  • « Previous Page
  • 1
  • …
  • 9
  • 10
  • 11
  • 12
  • 13
  • …
  • 25
  • Next Page »

Get a wealth of information delivered to your inbox. Subscribe and never miss a single article.

  • Tutorials and howtos
  • Code, scripts and commands
  • Online Tools

* No spam, unsubscribe anytime

Hire Me

  • SSL installation and hardening (A+ on Qualys SSL test)
  • Apache & Nginx configuration
  • Email deliverability improvement (10/10 on Mail Tester & MailGenius)
  • WordPress customization, optimization and migration
  • and much more…

    Tools

    • DNS Lookup Tool
    • htdigest Generator Tool Online
    • htpasswd Generator Tool Online
    • HTTP Headers Lookup Tool
    • MD5 Encryption Tool
    • Open Port Check Tool
    • SHA-1 Encryption Tool
    • URL Encoding/Decoding Tool

    Nav

    • Home
    • About Me
    • Contact Me
    • Privacy Policy
    • Sitemap
    Vultr SSD VPS

    Creative Commons License
    Jesin's Blog by Jesin A is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
    Based on a work at websistent.com.