Exsol.pk
We are providing the following services :-
Network designing, servers configuration, VOIP implement
18/03/2026
Muhammad Raza Goraya Kaleemullah Khan
12/03/2026
A true reality
12/03/2026
Road map to network engineering
PPPoE Server: What It Is & Configuration
What is PPPoE Server?
PPPoE (Point-to-Point Protocol over Ethernet) is a network protocol that encapsulates PPP frames inside Ethernet frames. A PPPoE Server authenticates and manages PPPoE client connections, typically used by ISPs to provide broadband internet access.
Key Components:
1. PPPoE Client: End-user router/modem that initiates connection
2. PPPoE Server: ISP router that authenticates and manages sessions
3. AAA Server: Optional external authentication server (RADIUS/TACACS+)
Common Use Cases:
· ISP Broadband Access: DSL, Fiber-to-the-Home
· Hotspot Authentication: Wi-Fi captive portals
· Corporate VPN Access: Remote employee connections
· Bandwidth Management: Per-user QoS and limits
---
Step-by-Step PPPoE Server Configuration
Network Topology
```
PPPoE Clients → Switch → Router (PPPoE Server) → Internet
(AAA Auth optional)
```
Step 1: Enable AAA & Define Authentication Method
```cisco
! Enable AAA globally
Router(config) # aaa new-model
! Create local user database (if not using external RADIUS)
Router(config) # username customer1 password cisco123
Router(config) # username customer2 password cisco456
! Define authentication method for PPP
Router(config) # aaa authentication ppp default local
Router(config) # aaa authorization network default local
Router(config) # aaa accounting network default start-stop group radius
```
Step 2: Configure Virtual Template for PPP Sessions
```cisco
! Create virtual template - this is cloned for each PPP session
Router(config) # interface Virtual-Template 1
Router(config-if) # ip unnumbered GigabitEthernet0/0 ! Shares IP with physical interface
Router(config-if) # peer default ip address pool PPPOE-POOL ! Assigns IP from pool
Router(config-if) # ppp authentication chap pap ! Enable CHAP and PAP
Router(config-if) # ppp chap hostname PPPOE-SERVER ! Server hostname for CHAP
Router(config-if) # mtu 1492 ! Standard for PPPoE (1500 - 8 byte PPPoE header)
Router(config-if) # ppp ipcp dns 8.8.8.8 8.8.4.4 ! Push DNS to clients
Router(config-if) # no shutdown
```
Step 3: Configure IP Address Pool for Clients
```cisco
! Define IP pool for PPPoE clients
Router(config) # ip local pool PPPOE-POOL 192.168.100.1 192.168.100.200
```
Step 4: Configure BBA Group (PPPoE Profile)
```cisco
! Create Broadband Aggregation (BBA) group
Router(config) # bba-group pppoe MY-PPPOE-GROUP
Router(config-bba-group) # virtual-template 1 ! Link to virtual template
Router(config-bba-group) # sessions maximum 100 ! Limit concurrent sessions
Router(config-bba-group) # sessions per-mac limit 1 ! One session per MAC
Router(config-bba-group) # sessions per-vlan limit 10 ! Limit per VLAN
```
Step 5: Apply PPPoE to Physical Interface
```cisco
! Configure the interface facing clients
Router(config) # interface GigabitEthernet0/1
Router(config-if) # description PPPoE-Server-Port
Router(config-if) # no ip address ! IP is on virtual-template
Router(config-if) # pppoe enable group MY-PPPOE-GROUP
Router(config-if) # no shutdown
```
Step 6: Configure Additional Features (Optional)
Rate Limiting & QoS
```cisco
! Create QoS policy for bandwidth limiting
Router(config) # class-map match-any ALL-TRAFFIC
Router(config-cmap) # match any
Router(config) # policy-map PPPOE-POLICY
Router(config-pmap) # class ALL-TRAFFIC
Router(config-pmap-c) # shape average 512000 ! 512kbps per client
Router(config-pmap-c) # police 1024000 ! Max 1Mbps burst
! Apply to virtual-template
Router(config) # interface Virtual-Template 1
Router(config-if) # service-policy output PPPOE-POLICY
```
VLAN-based PPPoE (for multiple customer groups)
```cisco
! Subinterface per VLAN
Router(config) # interface GigabitEthernet0/1.100
Router(config-subif) # encapsulation dot1Q 100
Router(config-subif) # pppoe enable group MY-PPPOE-GROUP
```
PPPoE Discovery Settings
```cisco
Router(config) # bba-group pppoe MY-PPPOE-GROUP
Router(config-bba-group) # pppoe limit per-mac 2 ! Allow 2 sessions per MAC
Router(config-bba-group) # pppoe timeout pending 60 ! Timeout for pending sessions
Router(config-bba-group) # pppoe timeout session 86400 ! Max session time (24h)
```
Step 7: Complete Configuration Example
```cisco
! Complete PPPoE Server Configuration
hostname PPPOE-SERVER
! AAA Configuration
aaa new-model
aaa authentication ppp default local group radius
aaa authorization network default local group radius
aaa accounting network default start-stop group radius
! Local users (backup if RADIUS fails)
username customer1 password 0 CustomerPass1
username customer2 password 0 CustomerPass2
! IP Pool
ip local pool PPPOE-POOL 192.168.100.1 192.168.100.254
! BBA Group
bba-group pppoe ISP-PPPOE
virtual-template 1
sessions maximum 500
sessions per-mac limit 2
! Virtual Template
interface Virtual-Template 1
ip unnumbered GigabitEthernet0/0
peer default ip address pool PPPOE-POOL
ppp authentication chap pap callin
ppp chap hostname PPPOE-SERVER
ppp ipcp dns 8.8.8.8 8.8.4.4
mtu 1492
service-policy output PPPOE-POLICY
no shutdown
! Physical Interface
interface GigabitEthernet0/1
description To-Clients
no ip address
duplex auto
speed auto
pppoe enable group ISP-PPPOE
no shutdown
! Uplink Interface
interface GigabitEthernet0/0
description Uplink-to-Internet
ip address 203.0.113.10 255.255.255.0
ip nat outside
no shutdown
! QoS Policy
class-map match-any ALL-TRAFFIC
match any
policy-map PPPOE-POLICY
class ALL-TRAFFIC
shape average 1024000 ! 1Mbps average
police 2048000 ! 2Mbps peak
! NAT for PPPoE clients
ip nat inside source list NAT-ACL interface GigabitEthernet0/0 overload
access-list 1 permit 192.168.100.0 0.0.0.255
! Apply NAT to virtual-template
interface Virtual-Template 1
ip nat inside
```
Step 8: RADIUS Integration (Advanced)
```cisco
! Configure RADIUS server
Router(config) # radius server RADIUS-SERVER
Router(config-radius-server) # address ipv4 192.168.1.100 auth-port 1812 acct-port 1813
Router(config-radius-server) # key MyRadiusSecret
Router(config-radius-server) # exit
! Create server group
Router(config) # aaa group server radius RADIUS-GROUP
Router(config-sg-radius) # server name RADIUS-SERVER
Router(config-sg-radius) # exit
! Configure AAA to use RADIUS
Router(config) # aaa authentication ppp default group RADIUS-GROUP local
Router(config) # aaa authorization network default group RADIUS-GROUP local
Router(config) # aaa accounting update periodic 5
```
Step 9: Verification Commands
```cisco
! Show active PPPoE sessions
show pppoe session
! Show detailed session information
show pppoe session all
! Check BBA group statistics
show bba-group
! Monitor PPP negotiations
debug ppp negotiation
debug ppp authentication
! Check virtual-template interfaces
show interfaces virtual-access ! Shows cloned sessions
show ip interface brief | include Vi
! View IP pool usage
show ip local pool
! Check AAA/RADIUS activity
show aaa user all
show aaa servers
debug radius authentication
! Test client connectivity
test aaa group radius username customer1 password cisco123 legacy
```
Step 10: Troubleshooting Common Issues
1. Client Cannot Connect
```cisco
! Check if PPPoE is enabled on interface
show running-config interface GigabitEthernet0/1
! Check for PPPoE discovery packets
debug pppoe events
debug pppoe packets
! Verify MTU settings
show interfaces virtual-template 1 | include MTU
```
2. Authentication Failures
```cisco
! Check username/password
debug ppp authentication
! Verify RADIUS connectivity
ping 192.168.1.100
show radius statistics
! Check local database
show running-config | include username
```
3. IP Address Not Assigned
```cisco
! Verify IP pool configuration
show ip local pool
! Check virtual-template IP configuration
show running-config interface Virtual-Template 1
! Debug IPCP (IP Control Protocol)
debug ppp ipcp
```
4. Slow Performance
```cisco
! Check for fragmentation
show interfaces | include giants|runts
! Verify QoS policy
show policy-map interface virtual-access 1
! Check CPU utilization
show processes cpu | include PPP
```
PPPoE Server vs Client Configuration Summary
Component Server Client
Interface pppoe enable group pppoe-client
Authentication Authenticates clients Provides credentials
IP Assignment Assigns IPs from pool Receives IP from server
Session Manages multiple sessions Single session
Quick Deployment Script
```cisco
! Quick PPPoE Server Setup Script
enable
configure terminal
!
! Basic configuration
hostname PPPOE-SERVER
aaa new-model
username testuser password testpass
aaa authentication ppp default local
!
! IP Pool
ip local pool PPPOE-POOL 192.168.100.1 192.168.100.100
!
! Virtual Template
interface Virtual-Template 1
ip unnumbered GigabitEthernet0/0
peer default ip address pool PPPOE-POOL
ppp authentication chap
mtu 1492
!
! BBA Group
bba-group pppoe QUICK-PPPOE
virtual-template 1
!
! Apply to interface
interface GigabitEthernet0/1
no ip address
pppoe enable group QUICK-PPPOE
no shutdown
!
end
write memory
```
This complete PPPoE server configuration allows you to:
1. Authenticate multiple clients
2. Assign dynamic IP addresses
3. Apply bandwidth limits
4. Monitor and troubleshoot sessions
5. Integrate with RADIUS for enterprise-scale deployments
Would you like me to elaborate on any specific aspect, such as RADIUS attribute configuration, advanced QoS, or PPPoE session failover?
I'll guide you through the essential router configuration for WAN to LAN communication, covering a typical setup where your router connects to an ISP (WAN) and provides internet to your internal network (LAN).
Basic Topology
```
Internet (WAN) ↔ Router WAN Interface ↔ Router LAN Interface ↔ Internal Network
```
Core Configuration Steps
1. Configure WAN Interface (External/Facing Internet)
```cisco
! For Static IP from ISP
interface GigabitEthernet0/0
description WAN-Connection-to-ISP
ip address 203.0.113.10 255.255.255.248 ! ISP-provided static IP
ip nat outside
duplex auto
speed auto
no shutdown
```
```cisco
! For DHCP from ISP (Most common for home/small business)
interface GigabitEthernet0/0
description WAN-Connection-to-ISP
ip address dhcp ! Gets IP automatically from ISP
ip nat outside
duplex auto
speed auto
no shutdown
```
```cisco
! For PPPoE (Common for DSL connections)
interface Dialer1
description PPPoE-to-ISP
ip address negotiated
encapsulation ppp
dialer pool 1
ppp chap hostname your_username@isp
ppp chap password your_password
ip nat outside
interface GigabitEthernet0/0
description Physical-WAN-Interface
pppoe enable group global
pppoe-client dial-pool-number 1
no shutdown
```
2. Configure LAN Interface(s) (Internal Network)
```cisco
! Main LAN interface
interface GigabitEthernet0/1
description LAN-Internal-Network
ip address 192.168.1.1 255.255.255.0 ! Router's LAN IP
ip nat inside
duplex auto
speed auto
no shutdown
! Additional LAN interfaces (if needed)
interface GigabitEthernet0/2
description LAN-For-Servers
ip address 192.168.2.1 255.255.255.0
ip nat inside
no shutdown
```
3. Configure NAT (Network Address Translation)
Without this, your LAN devices CANNOT reach the internet!
```cisco
! Define which internal networks get NAT
access-list 1 permit 192.168.1.0 0.0.0.255
access-list 1 permit 192.168.2.0 0.0.0.255
! Apply NAT (PAT/Overload) - Most common
ip nat inside source list 1 interface GigabitEthernet0/0 overload
! Alternative: Static NAT for a server (port forwarding)
ip nat inside source static tcp 192.168.1.100 80 interface GigabitEthernet0/0 80
ip nat inside source static tcp 192.168.1.100 443 interface GigabitEthernet0/0 443
```
4. Configure Default Route (To Internet)
```cisco
! Static route (if ISP gave you gateway IP)
ip route 0.0.0.0 0.0.0.0 203.0.113.1
! OR if using DHCP/PPPoE, the default route is usually learned automatically
! But you can add a static one as backup
```
5. Configure DHCP Server (Optional but Recommended)
```cisco
! Exclude router's IP and some static addresses
ip dhcp excluded-address 192.168.1.1 192.168.1.50
! Create DHCP pool for LAN
ip dhcp pool LAN_POOL
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 8.8.8.8 8.8.4.4 ! Google DNS, or use ISP's
domain-name yourcompany.local
lease 1 ! Lease time in days
```
6. Enable IP Routing & Basic Security
```cisco
! Enable IP routing (usually on by default)
ip routing
! Basic ACL to prevent spoofing
ip access-list extended BLOCK-SPOOF
deny ip 127.0.0.0 0.255.255.255 any
deny ip 192.168.0.0 0.0.255.255 any
deny ip 10.0.0.0 0.255.255.255 any
deny ip 172.16.0.0 0.15.255.255 any
permit ip any any
! Apply to WAN interface inbound
interface GigabitEthernet0/0
ip access-group BLOCK-SPOOF in
```
Complete Basic Configuration Example
```cisco
! Basic Router WAN-to-LAN Configuration
hostname R1
enable secret your_enable_password
service password-encryption
! WAN Interface (DHCP from ISP)
interface GigabitEthernet0/0
description ISP-Connection
ip address dhcp
ip nat outside
ip access-group BLOCK-SPOOF in
no shutdown
! LAN Interface
interface GigabitEthernet0/1
description Internal-LAN
ip address 192.168.1.1 255.255.255.0
ip nat inside
no shutdown
! NAT Configuration
ip nat inside source list NAT-ACL interface GigabitEthernet0/0 overload
access-list 1 permit 192.168.1.0 0.0.0.255
! Default Route
ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/0
! DHCP
ip dhcp excluded-address 192.168.1.1 192.168.1.10
ip dhcp pool LAN_DHCP
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 8.8.8.8 1.1.1.1
! Security ACL
ip access-list extended BLOCK-SPOOF
deny ip 127.0.0.0 0.255.255.255 any
deny ip 192.168.0.0 0.0.255.255 any
deny ip 10.0.0.0 0.255.255.255 any
deny ip 172.16.0.0 0.15.255.255 any
permit ip any any
! Console and SSH access
line console 0
password console_password
login
line vty 0 4
password ssh_password
transport input ssh
login
```
Verification Commands
```cisco
! Check interfaces
show ip interface brief
show interfaces gigabitEthernet0/0
show interfaces gigabitEthernet0/1
! Check NAT translations
show ip nat translations
show ip nat statistics
! Check routing table
show ip route
! Check DHCP leases
show ip dhcp binding
! Test connectivity
ping 8.8.8.8 source gigabitEthernet0/0 ! Test WAN connectivity
ping 192.168.1.10 ! Test LAN connectivity
! Debug if needed
debug ip nat
debug ip packet
```
Troubleshooting Common Issues
1. LAN devices can't reach internet
· Check NAT configuration: show ip nat translations
· Verify default route: show ip route
· Check ACLs: show access-lists
2. No WAN IP address
· Check physical connection
· Verify DHCP client: show dhcp lease
· Check ISP credentials (for PPPoE)
3. One-way communication
· Check firewall/ACL on both interfaces
· Verify NAT is configured on correct interfaces
4. Slow performance
· Check interface errors: show interfaces
· Verify MTU settings (especially for PPPoE/VPN)
Advanced Considerations
· MTU Issues: For PPPoE, reduce MTU to 1492: ip mtu 1492
· IPv6: If dual-stack, configure IPv6 addressing and ND
· QoS: For VoIP or video, implement Quality of Service
· VPN: Add site-to-site or remote access VPN configuration
· Dynamic DNS: Useful if WAN IP changes frequently
Would you like me to elaborate on any specific part, such as PPPoE configuration, site-to-site VPN, or advanced security configurations?
08/01/2026
Of course. The shift from older analogue CCTV systems (based on DVRs) to modern IP-based systems (based on NVRs) is a significant technological leap. Here’s a detailed breakdown of why IP CCTV is superior to the old analogue system, broken down into key areas.
1. Image Quality: A Night-and-Day Difference
* IP CCTV: Delivers **high definition (HD), Full HD (1080p), 4K, and beyond**. The clarity is exceptional, allowing you to identify faces, license plates, and small details at a distance. **Megapixel cameras** are standard.
* Old Analogue System: Limited to standard definition (SD), typically a maximum of **0.5MP (D1/4CIF)**. Images are often grainy, blurry, and lack detail, making identification beyond a basic scene overview difficult.
2. System Scalability and Flexibility
* IP CCTV: Infinitely scalable. You can easily add cameras one by one to your network. Cameras can be placed anywhere there is a network connection (using PoE - Power over Ethernet), not just where long coaxial cables can be run.
* Old Analogue System: Limited by hardware. Adding cameras often requires running dedicated coaxial cables directly to the DVR. Expansion is cumbersome and limited by the number of ports on the DVR.
3. Wiring and Infrastructure
* IP CCTV: Uses a single network cable (Ethernet) for power (via PoE), video, audio, and data. This simplifies installation and reduces cable clutter. It can also leverage existing office/network infrastructure.
* Old Analogue System: Requires two cables for each camera: a coaxial cable for video and a separate power cable. This leads to more complex, costly, and messy installations.
4. Intelligence and Advanced Features
IP CCTV: Cameras are intelligent network devices. They can analyse the video on board and provide:
Advanced Motion Detection: Can distinguish between a person, vehicle, and animal, reducing false alarms.
*Facial Recognition & License Plate Recognition (LPR).
*People Counting** and heat mapping.
*Tamper Detection** and line-crossing analytics.
Old Analogue System: Dumb devices. The camera sends a raw video signal. Any analytics (like basic motion detection) are done at the DVR and are far less accurate and prone to false alarms.
5. Remote Access and Integration
* IP CCTV: Designed for the internet. You can view live or recorded footage from anywhere in the world on any device (smartphone, tablet, PC) using a secure app or web browser. Easily integrates with other IP-based systems (access control, alarms, intercoms).
* Old Analogue System: Remote access is possible but often clunky, requiring complex port forwarding and offering a poor mobile experience. Integration with other systems is difficult and limited.
6. Reliability and Security
* IP CCTV: Offers end-to-end encryption (e.g., HTTPS, AES). Video feeds can be secured from the camera to the storage and to your phone. Network redundancy (like failover storage) is possible.
* Old Analogue System: Inherently insecure. Video signals are not encrypted and can be easily tapped or intercepted along the coaxial cable. Far more vulnerable to physical tampering and signal interference.
7. Storage and Management
* IP CCTV: Uses Network Video Recorders (NVRs), which are essentially specialised computers. They allow for flexible storage (larger hard drives, RAID arrays for redundancy), easier backup, and more intuitive user interfaces with advanced search functions (e.g., search for "red car in Zone A").
* Old Analogue System: Uses Digital Video Recorders (DVRs), which are less flexible, have limited search capabilities (often just by time/date), and generally offer less storage efficiency.
8. Total Cost of Ownership (TCO)
* IP CCTV: Higher initial investment per camera, but lower installation costs** (single cable, use of existing networks). Greater value per camera due to superior image quality and intelligence, leading to a better return on investment.
* Old Analogue System: Lower per-camera hardware cost, but much higher installation costs** (more cabling, labour). The poor image quality can lead to a "false economy" where the system fails to provide crucial evidence when needed.
Summary Table: IP vs. Analogue CCTV
| Feature | IP CCTV System | Old Analog System |
| Image Quality | HD, 4K, 8K+ (Megapixel) | Standard Definition (SD) |
| Wiring | Single Ethernet (PoE) | Coaxial + Power Cable |
| Scalability | Easy, network-based | Difficult, hardware-limited |
| Intelligence | In-camera analytics (AI, motion filters) | Basic DVR-based analytics |
| Remote Access | Excellent, designed for mobile | Difficult, often clunky |
| Security | High (data encryption) | Low (no signal encryption) |
| Storage & Search | Advanced (NVR, smart search) | Basic (DVR, time/date search) |
| Best For | Modern businesses, high-security areas, large/scalable sites, remote monitoring | Very small, budget-limited installations with no need for remote access or detail. |
Conclusion
While old analogue systems served their purpose, IP CCTV is a fundamentally better and more modern solution for virtually all applications. The dramatic improvement in image quality, the intelligent features, the ease of remote access, and the secure, scalable design make IP CCTV the clear choice for security, business intelligence, and peace of mind in today's connected world.
The only potential advantage of old systems is their slightly lower upfront hardware cost, but this is overwhelmingly outweighed by the long-term benefits of an IP system.
We provide network training from scratch to Profacinal
Join us now
Gulshan e Ahbab colony
Near Pak Arab housing society
Chandray road Lahore
WhatsApp: 03217771518
01/01/2026
اَلْحَمْدُلِلّٰہ
الوداع 2025 خوش آمدید 2026
دسمبر گزر گیا، یادیں ساتھ لے گیا
نیا سال آ گیا ہے، نئی اُمیدوں، نئے فیصلوں اور نئی شکرگزاری کے ساتھ۔
جو کھویا اُس نے سکھایا
جو پایا وہ اللّٰہ کا عطا تھا۔
گزرا سال صبر کا امتحان تھا،
اے اللّٰہ! نیا سال شُکر اور رحمتوں کا انعام بنا دے۔
یا رب!
اس سال امن، برکت، رزق، صحت، آسانی اور خوشیاں ہمارے نصیب میں لکھ دے
اور ہر دل کو سکون، امید اور کامیابی سے بھر دے۔ آمین
احمد رضا گھمن
EXSOLPK
Network solutions
Network security
Network CCTV
11/07/2025
کمال کی وڈیو بنائی ھے
نوے فیصد القران کے مطابق بنائی گئی ھے.
القران میں لکھے ھوئے جملے بولے گئے ھیں.
اور وہ جملہ تو رونگٹے کھڑے کردیتا ھے.اس جملے کی عربی بتاتا ھوں.
"لمن الملک الیوم . لللہ واحد قہار."
مطلب. آ ج کس کی بادشاہت ھے. اللہ واحد قہار کی بادشاہت ھے.
خدا کے لیئے اس وڈیو کو سمجھ کر سنیں اور دیکھیں.
The Day of Judgement EXSOLPKکمال کی وڈیو بنائی ھےنوے فیصد القران کے مطابق بنائی گئی ھے.القران میں لکھے ھوئے جملے بولے گئے ھیں.اور وہ جملہ تو رونگٹے کھڑے کردیتا ھے.اس جملے کی عربی...
13/06/2025
آخر کار بجلی کے بلوں ، 8 قسم کے ٹیکسوں، اور نان پروٹیکڈڈ والے ظلم سے تنگ آ کر ہم نے پچھلے ماہ سولر سسٹم انسٹال کرالیا ۔ یہی سوچا کہ ایک بار کا کڑوا گھونٹ، سالہا سال کے خرچے اور بلوں کے جھٹکے سے بچا لیتا ہے ۔
اگر چہ ہماری فیملی چھوٹی ہے اور میٹر بھی دو ہیں ، پچھلے سال گھر کے 5 سیلنگ فین بھی انورٹر لگوا لیے تھے بل تو کم ہوا ، مگر گرمی میں مسلسل اے سی چلانا ، پہاڑ جیسے بل کو آواز دینے کے مترادف تھا ۔ دو ماہ پہلے چھوٹی گاڑی فروخت کرکے فیصلہ کیا کہ رقم سے بینک والوں کو پالنے کی بجائے گھر سولر سسٹم پر منتقل کردیں۔۔ اور پھر کردیا ۔
اب الحمدللہ سکون ہے ۔ صبح 7 سے شام 5 تک سارا لوڈ سولر پر چلتا ہے ۔ ہمارے دو AC ہیں ، 9 سے چار تک دونوں چل جاتے ہیں, بشرطیکہ اس وقت کوئی اور بھاری مشینری نہ چلے ۔
فی الحال ایک اے سی ہی چلاتے ہیں کیونکہ بغیر بیٹری کے زیادہ لوڈ پر ٹرپ کرکے واپڈا سے بجلی لینے لگتا ہے ۔ اسی وجہ سے صبح 8 بجے واپڈا کا مین سوئچ آف کردیتے تاکہ صرف سولر استعمال ہو . ( جگاڑ )
شام 6 سے دس سولر پر چارج شدہ یو پی ایس بھی چلا لیتے ہیں ۔ رات 10 بجے واپڈا پر اے سی ، پنکھا اور فریج چلتا ہے ، اے سی فجر کے وقت تک چلتا ہے ۔ روز کے 7 یونٹ خرچ ہوتے ہیں ۔ لیتھیئم بیٹری کے بعد یہ یونٹ بھی کم ہو جائیں گے , شاید سردیوں میں صفر تک آجائیں ۔
آن گرڈ یا نیٹ میٹرنگ اس لیے نہیں کروائی کہ اس کا خرچہ بھی اب زیادہ ہے اور شرائط بھی کڑی ہیں ، اور ہماری فیملی کے لیے سب نے ہائبرڈ کا ہی مشورہ دیا اور یہی کامیاب چل رہا ہے۔
سب سے اہم سوال ، خرچہ کتنا آیا اور کتنی پاور کا سسٹم ہے ، کتنے پینلز اور کس کمپنی کا ؟
آٹھ کینیڈین سولر پلیٹس( 585 wt) ( 1 لاکھ 48 ہزار)
6.2 کلو واٹ کا انورٹر ( کمپنی Knox ) 1 لاکھ 77 ہزار
وائرنگ ، انسٹالیشن ، فریم ، مزدوری : تقریباً سوا لاکھ
( دیسی یا لوکل انورٹر 30 سے 40 ہزار تک بھی بن جاتا ، یہی سسٹم لوکل میں تین لاکھ سے کم میں بھی بن جاتا ، تین کلو واٹ کا مزید کم ہو جائے گا )
چھت پر فریم نصب کراتے ہوئے ، لینثل کھود کر مضبوط راڈ اور چینل فکس کراوئے ، اس پر 81 ہزار خرچ آیا ۔ فریم پر ابھی دو مزید پلیٹوں کی گنجائش ہے یوں 10 پینلز ہو جائیں گے ۔
سارے خرچے ملا کر کل لاگت 4 لاکھ 50 ہزار آئی ۔
اسی کمپنی کی لیتھیئم بیٹری انسٹال کروائی تو شاید پونے دو لاکھ کا مزید خرچ اس میں شامل ہو جائے ۔ یہ سب خرچ اے گریڈ آئٹمز کا ہے ، کسی چیز میں جگاڑ یا بچت کا رسک نہیں لیا ۔
فی الحال بیٹری کے بغیر کام چل رہا ہے کیونکہ کچھ بیک اپ کے لیے یو پی ایس ہے ۔ اگر لیتھیئم بیٹری نہ ہو تو دوسری چار رکھوانی پڑیں گی ، جو سوا لاکھ تک ہوں گی ، وہ جگہ بھی زیادہ گھیرتی ہیں اور دو تین سال بعد نئی لینی پڑتی ہیں ۔ لیتھیئم اگرچہ مہنگی ہے مگر اس کی کئی سال وارنٹی ہوتی ہے ۔ سو بیٹری لیتھیئم ہی چلے گی۔
اس ماہ بل ایک میٹر پر 450 روپے ، دوسرے پر 1600 روپے یعنی ٹوٹل 2000 ۔۔۔ اور یہ رات کی بجلی کا بل ہے ۔ دن رات اے سی چلنے کے باوجود ۔۔۔ ماہانہ ٹوٹل 200 یونٹ بھی خرچ نہیں ہوئے۔
اگر گنجائش ہے ، تو واپڈا سے آہستہ آہستہ جان چھڑا لیں ۔ جس طرح کرائے کے گھر میں رہنے سے ساری زندگی جو کرایہ دیا ، اس کرایے سے ایک اچھا مکان بن سکتا ہے ۔ واپڈا کو آدھی آمدنی دینے کا بھی وہی حساب ہے ۔ اپنا بجلی گھر خود بنائیں ۔ اگرچہ اس بجٹ میں سولر پینلز پر 18 فیصد ٹیکس لگ گیا ہے ، مگر ساتھ ہی بجلی پر جو سرچارج لگایا جا رہا ہے ، وہ چیخیں نکال دے گا ۔
اکٹھا سولر سسٹم نہیں بھی لگوا سکتے تو تھوڑا تھوڑا کرکے لوڈ پینلز پر منتقل کرتے جائیں ، سیلنگ فین بھی سولر پر ہو جائیں تو بلوں پر فرق پڑے گا ۔ دو پلیٹوں سے آغاز کریں۔ کمیٹی ڈال لیں ، اگر پیسہ بینک میں پڑا ہے تو اس کو استعمال میں لے آئیں ، دو تولہ زیور فروخت کرکے بھی اچھا سسٹم بن جائے گا ۔
اگر چہ دو میٹرز پر پابندی اور سخت شرائط والی خبر غلط نکلی محض افواہ تھی ، لیکن ان کی غنڈہ گردی پھر بھی باقی ہے ۔ جتنی تیزی سے لوگ سولر سسٹم کی طرف جا رہے ہیں، وہ وقت دور نہیں جب واپڈا کا حال بھی پی ٹی سی ایل ، ریڈیو پاکستان اور ڈاک خانے کی طرح ہوگا۔ یہ موبائل کمپنیوں کی طرح مفت سم کی طرح مفت میٹر لگوانے پر ترلے کریں گے کیونکہ اشرافیہ کو مفت یونٹس دینے کے لیے یہ سفید ہاتھی جیسا محکمہ بھی تو چلانا ہے ۔ لیکن یہ محکمہ ہمارے خون پسینے سے کیوں چلے ؟
( یہ تحریر صرف آپ کی معلومات کے لیے لکھی ، اور اپنے تجربے اور خرچے کو سامنے رکھ کر لکھی ، آپ اپنے گھر کے لوڈ اور موجودہ ریٹس کے مطابق اندازہ لگا سکتے ہیں، جو خرچہ آپ کو بتایا جاتا ہے ، انسٹال کرواتے وقت زیادہ ہو جاتا ہے ۔ اپنے گھر کے لوڈ کے مطابق اور بجٹ کے مطابق کسی ایکسپرٹ سے پوچھ کر فیصلہ کریں ۔۔ اور ضرور کریں )
منقول
13/06/2025
A network cabin (or network cabinet) is a structure or enclosure designed to house and protect networking equipment, such as servers, routers, switches, and other IT infrastructure. These cabins are commonly used in data centers, telecommunications facilities, and enterprise IT environments to ensure proper organization, cooling, and security of critical hardware.
Key Features of a Network Cabin:
1. Rack Mounting
Typically includes standardized 19-inch or 23-inch racks for mounting equipment.
2. **Ventilation & Cooling** Equipped with fans, perforated doors, or integrated cooling systems to prevent overheating.
3. **Security**
Lockable doors and side panels to restrict unauthorized access.
4. **Cable Management**
Built-in cable organizers, trays, and ducts to maintain neat and efficient wiring.
5. **Durability**
Made from sturdy materials like steel or aluminum to protect sensitive equipment.
6. **Noise Reduction**
Some models include soundproofing for environments where noise is a concern.
7. **Mobility**
Certain network cabinets come with wheels for easy relocation.
**Types of Network Cabins:**
**Wall-Mount Cabinets**
Smaller, designed for light equipment like switches and patch panels.
**Floor-Standing Cabinets**
Larger, used in data centers for servers and extensive networking gear.
**Open-Frame Racks**
No enclosed panels, used for easy access in controlled environments.
- **Soundproof Cabinets** – Reduce noise from high-performance servers and cooling systems.
**Common Applications:**
- Data centers
- Server rooms
- Telecommunication hubs
- Office IT closets
- Industrial control systems
Would you like recommendations for a specific type of network cabin based on your needs?
Click here to claim your Sponsored Listing.
Category
Contact the business
Telephone
Website
Address
Askri Xi
Lahore
59100
Opening Hours
| Monday | 09:00 - 21:00 |
| Tuesday | 09:00 - 17:00 |
| Wednesday | 09:00 - 21:00 |
| Thursday | 09:00 - 21:00 |
| Friday | 09:00 - 12:00 |