Wednesday, May 20, 2026

كتابة الابحاث

ملاحظات أساسية عند كتابة الأبحاث
1- ظبط حجم الخط 14 Simplified Arabic بالنسبة للكتابة العربي و Times new Roman في الكتابة الانجليزي.
2- المسافات بين الخطوط 1 في العربي على الخط اللي عملناه و1.5 في الانجليزي.
3- العناوين بتكون 16 Bold والعناوين الفرعية 14 Bold  وممكن نستخدم Underline لو في اكتر من عنوان فرعي.
4- العربي لازم الصفحة تكون Right to Left والانجليزي Left to right 
5- هنعمل Justify  للفقرات عشان يبقى في محاذاة من الاطراف.
6- لو عايز تعمل مسافة قبل كل فقرة ممكن تضغط Tab قبل كل فقرة بس تلتزم بيها في في كل البحث.
7- هنسيب مقاس الورقة A4 والهوامش على الوضع الافتراضي لحد ما نخلص والكلية بتحدد الشكل النهائي للرسالة وسهل تغيرها بعد كده، والأشهر انك بتسيب ٤ سم في الأعلي و٣ سم في الأسفل و٣.٥ سم في جانب التجليد (يمين للبحوث العربية ويسار للبحوث الاجنبيه) و٢.٥ في الجانب الأخر. 
8- نخلي بالنا من المسافات الزيادة في ناس ايديها فرطة في المسافات بتعمل مسافات ملهاش لازمة.
9- علامات الترقيم كلها لازم تبقى لازقة في اخر كلمة مفيش قبلها مسافة والمسافة بتكون بعدها.
10- الأقواس في مسافة قبلها واللي جوة القوس لازق في الكلام زي كده (مثال).
11- النقطة في اخر الفقرة بتكون لازقة في اخر كلمة مفيش مسافة قبلها.
12- المراجع اسهل حاجة انك تعمل ALT+CTRL+F وبتنزل من غير أقواس وبتكون متسلسلة تلقائي يعني لو رحلت في صفحة تانية بتاخد رقم 1 عادي.
13- متحطش الأقواس بتاعة المراجع بايدك بعد ما بتخلص في برامج أو اكواد بتحطها كلها مرة واحدة وتظبط تنسيقها.
14- الجداول مبتتحركش بالماوس عشان بتبوظ كفاية سطر فاضي قبليها وسطر فاضي بعديها وممكن نتحكم في حجم المسافة عادي.
15- نخلي بالنا من الهمزات الكلمة اللي انت عارف انها بهمزة اعملها لو مش عارف ممكن تشوفها على جوجل واهم حاجة تكتبها في كل البحث بنفس الطريقة عشان لو هتراجع بعد كده ممكن تتعدل الكلمة في البحث كله مرة واحدة.
16- لو هتحط صور اعملها فراغ كام سطر كده على حسب مقاسها وخليها In front of text هتقدر تتحكم فيها وتحطها في المكان اللي انت عايزه.
17- لو في رسومات بيانية Charts هتتعمل في الاكسيل وبعدين ننقلها في الورد ده اسهل.
بالتوفيق للجميع

Tuesday, April 14, 2026

Configure cisco air-cap3602i-a-k9 Access Point

 

To configure your Aironet 3602i from scratch, we will wipe any existing settings and build the Bridge-Group Virtual Interface (BVI) architecture.

In this scenario:

  • VLAN 1 (Native): Management (AP gets its IP here).

  • VLAN 10: User Traffic (SSID: Private_Net).

  • Hidden SSID: We will use the guest-mode command (or rather, the absence of it) to hide the SSID.


Phase 1: Global Setup & Security

Enter configuration mode and define the encryption for the user VLAN.

Code snippet
enable
configure terminal

# Enable password encryption and basic security
service password-encryption
hostname AP-3602

# Define the SSID
dot11 ssid Private_Net
   vlan 10
   authentication open 
   authentication key-management wpa version 2
   wpa-psk ascii 0 YourSecretKey123
   # Do NOT enter 'guest-mode' here; this keeps the SSID hidden

Phase 2: Wired Interface (GigabitEthernet0)

We must split the physical Ethernet port into sub-interfaces that match the switch's trunk tags.

Code snippet
# Management / Native VLAN
interface GigabitEthernet0.1
 encapsulation dot1Q 1 native
 bridge-group 1

# User Data VLAN
interface GigabitEthernet0.10
 encapsulation dot1Q 10
 bridge-group 10
 exit

Phase 3: Radio Interfaces (Dot11Radio)

You must apply the configuration to both the 2.4GHz (Radio0) and 5GHz (Radio1) radios for full coverage.

Code snippet
# --- 2.4GHz Radio Configuration ---
interface Dot11Radio0
 encryption vlan 10 mode ciphers aes-ccm
 ssid Private_Net
 no shutdown

interface Dot11Radio0.1
 encapsulation dot1Q 1 native
 bridge-group 1

interface Dot11Radio0.10
 encapsulation dot1Q 10
 bridge-group 10

# --- 5GHz Radio Configuration ---
interface Dot11Radio1
 encryption vlan 10 mode ciphers aes-ccm
 ssid Private_Net
 no shutdown

interface Dot11Radio1.1
 encapsulation dot1Q 1 native
 bridge-group 1

interface Dot11Radio1.10
 encapsulation dot1Q 10
 bridge-group 10
 exit

Phase 4: Management IP & Gateway

This is where you assign the static identity to the AP. The IP lives on BVI1, which links to Bridge-group 1.

Code snippet
interface BVI1
 ip address 192.168.1.50 255.255.255.0
 no shutdown
 exit

# Set gateway so you can manage it from other subnets
ip default-gateway 192.168.1.1

Phase 5: Finalizing

Verify that the SSIDs are active and save your work.

Code snippet
# Check that the SSID is up (it should not show 'G' for Guest/Broadcast)
show dot11 bssid

# Save the config
write memory

Important Checklist

  1. Switch Side: Ensure your switchport is configured as:

    • switchport mode trunk

    • switchport trunk native vlan 1

  2. Hidden SSID Note: Since the SSID is hidden, you will need to manually type "Private_Net" into your devices to connect the first time.

  3. WPA Settings: Ensure you used encryption vlan 10 mode ciphers aes-ccm on the physical radio interfaces, or the WPA2 handshake will fail.

Sunday, February 22, 2026

switch password recovery

 

To remove the admin password on a
Cisco Catalyst 3850, boot the switch into recovery mode by holding the Mode button for 12 seconds until the LED turns amber. Then, use the SWITCH_IGNORE_STARTUP_CFG=1 command in the switch: prompt to bypass the configuration, allowing you to reconfigure the password without losing existing settings.
Step-by-Step Password Recovery Process:
  1. Connect to Console: Connect your computer to the switch console port.
  2. Power Cycle & Mode Button: Unplug the power, then plug it back in while holding the Mode button on the front panel.
  3. Enter ROMMON: Keep holding for 10-15 seconds until the status LED turns amber and you see the switch: prompt.
  4. Initialize Flash: Type flash_init and press Enter.
  5. Ignore Config: Type SWITCH_IGNORE_STARTUP_CFG=1 and press Enter.
  6. Boot System: Type boot and press Enter.
  7. Enter Privilege Mode: Once booted (skipping config), type enable to enter privileged EXEC mode.
  8. Load Configuration: Rename the old config to make it the running config: copy flash:config.text system:running-config.
  9. Change Password: Enter global configuration mode (conf t) and set a new password: username [name] privilege 15 secret [new_password].
  10. Disable Ignore Flag: Disable the ignore startup config setting: no switch: SWITCH_IGNORE_STARTUP_CFG=1 or conf t, system ignore startupconfig.
  11. Save Configuration: Save the new configuration with write memory.

كتابة الابحاث

ملاحظات أساسية عند كتابة الأبحاث 1- ظبط حجم الخط 14 Simplified Arabic بالنسبة للكتابة العربي و Times new Roman في الكتابة الانجليزي. 2- المس...