Popular Posts

Dec 15, 2024

Exploring VxRail Dynamic Nodes and Satellite Nodes: A Comprehensive Guide


Exploring VxRail Dynamic Nodes and Satellite Nodes: A Comprehensive Guide

Introduction

In the evolving landscape of IT infrastructure, Dell EMC's VxRail solutions stand out for their flexibility and scalability. This blog post delves into the key features and benefits of VxRail Dynamic Nodes and Satellite Nodes, highlighting how they can meet the diverse needs of businesses, especially in remote office/branch office (ROBO) environments.

Key Features of VxRail Dynamic Nodes

1. Compute-Only Nodes

VxRail Dynamic Nodes are designed as compute-only nodes without a vSAN license. This allows organizations to focus on scaling compute resources independently from storage.

2. Flexible Storage Options

These nodes offer flexible primary storage options, including VMware vSAN HCI Mesh or Dell external storage arrays. This flexibility enables businesses to tailor their storage solutions according to specific workload requirements.

3. Asymmetric Scaling

The architecture supports asymmetric scaling, meaning customers can add more compute power by integrating additional VxRail Dynamic Nodes or enhance storage capacity by incorporating external storage arrays.

4. Hardware Models

Available hardware models include E660F, P670F, and V670F, all designed without support for internal storage, making them ideal for specific deployment scenarios.

Understanding VxRail Satellite Nodes

1. Single Node Deployment

VxRail Satellite Nodes are single-node deployments managed by a VxRail cluster running with vSAN. They do not form a cluster themselves, making them a cost-effective solution for smaller environments.

2. Cost-Effective Management

With no vSAN licensing costs and a smaller footprint compared to traditional clusters, Satellite Nodes offer an economical option for remote sites while still providing local protection through an onboard RAID controller.

3. Centralized Management

Satellite Nodes are centrally managed from the main VxRail cluster, allowing IT experts to control multiple nodes across different remote locations efficiently. This centralized management ensures consistency in software versions and continuous validation states.

Integration and Extensibility

1. VxRail API Stoplight Integration

VxRail supports API integrations that allow users to explore functionalities through a web browser or PowerShell CLI interface. This extensibility enables automation of various tasks, including Day 1 cluster deployment and Day 2 operations like LCM upgrades and node removal.

2. Flexible Licensing Options

Dell EMC offers flexible vSAN licensing with options ranging from Standard to Enterprise Plus, catering to different organizational needs and workloads.

Data Protection Options

1. Stretched Clusters

VxRail provides stretched clusters for continuous availability, ensuring that virtual machines remain accessible even during site failures.

2. Recovery Solutions

Options such as RecoverPoint for VMs and VMware Site Recovery enable businesses to replicate VMs to different sites or cloud environments, ensuring robust disaster recovery capabilities tailored to specific RPO/RTO requirements.

Deployment Options

1. Edge Deployments

VxRail Satellite Nodes are particularly beneficial for edge deployments where space or network constraints exist. They can be built on E660, E660F, and V670F platforms to provide efficient remote management.

2. Management Cluster Capabilities

A single VxRail management cluster can deploy and manage up to 500 Satellite Nodes, allowing organizations to scale their infrastructure without compromising on management efficiency.

Conclusion

Dell EMC's VxRail Dynamic Nodes and Satellite Nodes provide versatile solutions tailored for modern IT environments. With features like flexible scaling, centralized management, and robust data protection options, these nodes empower organizations to meet their specific workload requirements effectively. Whether you're looking to enhance your compute capabilities or streamline management across remote offices, VxRail offers the tools necessary for success in today's digital landscape.By understanding the unique advantages of these technologies, businesses can make informed decisions that align with their strategic goals in an increasingly complex IT ecosystem.









 

Apr 2, 2024

nmap one liners and tricks

  nmap one liners and tricks


port scan against a target to discover open ports

      nmap 192.168.1.1 


scan multiple target hosts

      nmap 192.168.1.1 192.168.1.2


scan a range of IP addresses (1 to .10)

      nmap 192.168.1.1-10 


scan an entire subnet

      nmap 192.168.1.0/24


scan specific ports

      nmap -p 22,80,443 192.168.1.1 


detect operating system and version

      nmap -0 192.168.1.1 


detect service type/version for each open port

      nmap -sV 192.168.1.1 


aggressive scan (incl OS and service detection)

      nmap -A 192.168.11


check if the target is online without port scan

      nmap -sn 192.168.1.1 


scan without ping (useful if ICMP is blocked)

      nmap -Pn 192.168.1.1 


scan with UDP probes

      nmap -sU -p 53 192.168.1.1


increase debug level (-dd for greater effect)

      nmap -d 192.168.1.1


output to a file in XML format

      nmap -oX output.xml 192.168.1.1


run specific NSE scripts

      nmap --script=<nse-script> 192.168.1.1


find a list of NSE scripts to use with nmap

      ls /usr/share/nmap/scripts


scan with spoofed source IP address

      nmap -D <decoy-IP> 192.168.1.1 


scan with fragmented packets to evade IDS/IPS

      nmap -f 192.168.1.1 


exclude specific targets

      nmap 192.168.1.0/24 --exclude 192.168.1.10 


scan using a specific network interface

      nmap -e etho 192.168.1.1 


show all packets sent/received

      nmap -p 80-d -packet-trace 192.168.1.1


set timing for scanning (0 slowest; 5 fastest)

      nmap 192.168.1.1-T<0-5> 


scan using a list of hosts/networks found in a file

      nmap -iL targets.txt 


enable IPv6 scanning

      nmap -6 2605:0d0:1005:51:4 

May 29, 2022

The FinOps Lifecycle - Three Phases of FinOps

The FinOps Lifecycle - Three Phases of FinOps 


Inform

Gain the visibility you need for cloud spend allocation. This helps create shared accountability within your business by showing teams what they are spending and why.


Optimize

Empower your teams by providing actionable recommendations. This helps teams identify, execute and measure efficiency optimizations.


Operate

Build governance policies that provide continuity and structure. This enables the goals of Technology, Finance and Business to be jointly achieved.



May 27, 2022

Increase Disk Size And Volume In VMware Linux VM

Increase Disk Size And Volume In VMware Linux Server 

APPLIES TO :  Linux VM running in VMware virtualization platform

ISSUE :  Linux volume running our of space. 

GOAL :  Increase the disk size and increase the volume size in Linux without adding new disk to VG

SOLUTION :  Increase the disk size in VMware settings, scan the disk and resize the volume.

Prerequisites :   NA


The server is having 35GB disk in VG01.










In Linux OS the disk size:

[root@test ~]#  fdisk -l|grep -i "/dev/sd"

[root@test ~]#  pvdisplay


Increase the disk size in VMware settings:

Scan the disk:

[root@test ~]#  ls /sys/class/scsi_disk/
0:0:0:0  0:0:1:0
[root@test ~]#  


[root@test ~]# echo "1" > /sys/class/scsi_disk/0:0:1:0/device/rescan


The disk size is increased:
[root@test ~]#  fdisk -l|grep -i "/dev/sd"





pvresize command will bring the disk space in VG:
[root@test ~]#  pvresize /dev/sdb

[root@test ~]#  pvdisplay















Free space is available in VG and you can increase the volume size:
[root@test ~]#  lvextend -r -L+10GB /dev/mapper/vg01-test

[root@test ~]#  df -h /test




OR 

lvextend -r -l +4608(Free PE) /dev/mapper/vg01-test - This will extend the complete free space to volume

Apr 21, 2022

Google Cloud Network Service Tiers : Premium Tier and Standard Tier

Network Service Tiers

Google Cloud is the first major public cloud to offer a tiered cloud network. 

Google Cloud is the first major public cloud to offer a tiered cloud network. 

Two tiers are available: 

1. Premium Tier

2. Standard Tier


Premium Tier:

Premium Tier delivers traffic from external systems to Google Cloud resources by using Google's highly reliable, low-latency global network. This network consists of an extensive private fiber network with over 100 points of presence (PoPs) around the globe. This network is designed to tolerate multiple failures and disruptions while still delivering traffic.

Premium Tier supports both regional external IP addresses and global external IP addresses for VM instances and load balancers. All global external IP addresses must use Premium Tier. Applications that require high performance and availability, such as those that use HTTP(S), TCP proxy, or SSL proxy load balancers with backends in more than one region, require Premium Tier. Premium Tier is ideal for customers with users in multiple locations worldwide who need the best network performance and reliability.

With Premium Tier, incoming traffic from the internet enters Google's high-performance network at the PoP closest to the sending system. Within the Google network, traffic is routed from that PoP to the VM in your Virtual Private Cloud (VPC) network or closest Cloud Storage bucket. Outbound traffic is sent through the network, exiting at the PoP closest to its destination. This routing method minimizes congestion and maximizes performance by reducing the number of hops between end users and the PoPs closest to them.

Standard Tier:

Standard Tier delivers traffic from external systems to Google Cloud resources by routing it over the internet. It leverages the double redundancy of Google's network only up to the point where a Google data center connects to a peering PoP. Packets that leave the Google network are delivered using the public internet and are subject to the reliability of intervening transit providers and ISPs. Standard Tier provides network quality and reliability comparable to that of other cloud providers.

Regional external IP addresses can use either Premium Tier or Standard Tier. Standard Tier is priced lower than Premium Tier because traffic from systems on the internet is routed over transit (ISP) networks before being sent to VMs in your VPC network or regional Cloud Storage buckets. Standard Tier outbound traffic normally exits Google's network from the same region used by the sending VM or Cloud Storage bucket, regardless of its destination. In rare cases, such as during a network event, traffic might not be able to travel out the closest exit and might be sent out another exit, perhaps in another region.

Standard Tier offers a lower-cost alternative for applications that are not latency or performance sensitive. It is also good for use cases where deploying VM instances or using Cloud Storage in a single region can work. 


Knowledge Source

Jul 1, 2021

How to Manually Set Your IP in Linux - Set IP Address in Linux with ifcfg-eth0

 

APPLIES TO :  RHEL

ISSUE :  How to configure network configuration file ifcfg-eth0. OR ifcfg-eth0 file format

GOAL :  Configure IP address in RHEL server in ifcfg-eth0 file

SOLUTION :  Create a file /etc/sysconfig/networkscripts/ifcfg-eth0 with below sample. 

Prerequisites :   


NAME=eth0

DEVICE=eth0

ONBOOT=yes

NETBOOT=yes

BOOTPROTO=none

TYPE=Ethernet

PROXY_METHOD=none

BROWSER_ONLY=no

DEFROUTE=yes

IPV4_FAILURE_FATAL=no

IPV6INIT=no

IPADDR=192.168.1.10

PREFIX=24

GATEWAY=192.168.1.1

DNS1=192.168.1.101

DNS2=192.168.1.102

DNS3=192.168.1.103

DOMAIN="sagariah.com"

/etc/resolv.conf will automatically configured after every reboot by network manager

# Generated by NetworkManager

search sagariah.com

nameserver 192.168.1.101

nameserver 192.168.1.102

nameserver 192.168.1.103




~Judi~



Popular Posts