OSPF Configuration: Multi-Router Setup

OSPF Configuration for Multiple Routers

RTR-1 Configuration

enable
configure terminal
router ospf 10
exit
interface g0/0/0
ip ospf 10 area 0
interface s0/1/0
ip ospf 10 area 0
exit
router ospf 10
router-id 9.9.9.9
exit
interface g0/0/0
ip ospf priority 255
exit
ip route 0.0.0.0 0.0.0.0 s0/1/1
router ospf 10
default-information originate
exit
interface s0/1/0
ip ospf hello-interval 20
ip ospf dead-interval 80
exit
router ospf 10
auto-cost reference-bandwidth 10000
exit
router ospf 10
passive-interface 
Read More

Web Servers, FTP, and Content Management: A Technical Deep Dive

Update Content

Internet and Web Servers

Websites are hosted on computers called Web Servers. These servers use programs that accept requests from clients.

Examples of Web Servers:

  • IIS (Internet Information Server)
  • PWS (Personal Web Server)
  • WAMP (Windows + Apache + MySQL + PHP)
  • LAMP (Linux + Apache + MySQL + PHP)
  • XAMPP
  • Apache (.php)
  • Apache Tomcat (Pages .jsp)

Server Types

Read More

Network Configuration: Routers and Switches Setup

Router R1 Configuration

hostname R1

interface FastEthernet0/0.10
 encapsulation dot1Q 10
 ip address 10.0.0.1 255.255.248.0

interface FastEthernet0/0.20
 encapsulation dot1Q 20
 ip address 10.0.8.1 255.255.252.0

interface FastEthernet0/0.30
 encapsulation dot1Q 30
 ip address 10.0.12.1 255.255.252.0

interface FastEthernet0/0.40
 encapsulation dot1Q 40
 ip address 10.0.16.1 255.255.255.0

interface FastEthernet0/0.99
 encapsulation dot1Q 99
 ip address 1.1.1.1 255.0.0.0

interface FastEthernet0/
Read More

OpenSSL: Symmetric Encryption Algorithms & Examples

Symmetric Encryption Algorithms with OpenSSL

Encrypt the file “fichero.txt” using the RC4 symmetric encryption algorithm

OpenSSL> rc4 -in c:\cifrado\fichero.txt -out c:\cifrado\cifrado.rc4
enter rc4 encryption password:
Verifying - enter rc4 encryption password:

Decrypt the previous file:

OpenSSL> rc4 -d -in c:\cifrado\cifrado.rc4 -out c:\cifrado\descifrado.txt
enter rc4 decrypt password:

DES

Encrypt:

OpenSSL> des -salt -in c:\csb.log -out c:\csb.bf.txt
enter des-cbc encryption password:
Verifying 
Read More

Oracle DBMS Architecture: Key Concepts

Init.ora Configuration

The init.ora file is an archive of initialization values used to start an Oracle instance and establish configurations. It uses default values to optimize performance and resource allocation. This file sets all the parameters for Oracle to function correctly. There will be as many configuration files as there are active instances in the information system.

Control Files

Control Files are a set of small, stable files responsible for maintaining the consistency of the other files

Read More

Veeam Backup & Replication: Key Concepts and Configurations

Veeam Backup & Replication: Key Concepts

Backup Job Configuration:

  • A Backup Administrator configures a copy job. Options include: One backup file per VM, or one backup file for all backup jobs.
  • A Backup Administrator has restored a VM. The recovery process should be: Migrate to production.
  • If a backup job is started while another is running, the backup job will fail immediately.
  • The most appropriate setting for backup jobs is to run continuously.
  • A Backup Administrator must perform a level of recovery.
Read More