الرئيسية التحكم التسجيل خروج

راعي مسابقة هواة الشبكات اللاسلكية
 

العودة   منتدى هواة الشبكات اللاسلكية > أقسام المنتدى > قسم خاص باجهزة وبرامج الميكروتك Mikrotik


إضافة رد
 
LinkBack أدوات الموضوع انواع عرض الموضوع
  #1 (permalink)  
قديم 05-24-2009, 07:31 AM
شبكي نشيط
تاريخ التسجيل: May 2009
المشاركات: 46
افتراضي بعض الفنيات البسيطه في المايكروتيك

رول لدمج خطين


المصدر الاول 85.31.88.1 للانترفيس In_Wan1
والمصدر الثاني 86.62.23.1 للانترفيس In_Wan2
للحصول على 192.168.0.1 للانترفيس Out_Lan
تتم اضافة العبارات التالية من النيو تيرمنال
/ ip address
add address=192.168.0.1/24 network=192.168.0.0 broadcast=192.168.0.255 interface=Out_Lan comment="" \
disabled=no
add address=85.31.88.2/24 network=85.31.88.0 broadcast=85.31.88.255 interface=In_Wan1 \
comment="" disabled=no
add address=86.62.23.2/24 network=86.62.23.0 broadcast=86.62.23.255 interface=In_Wan2 \
comment="" disabled=no
/ ip route
add gateway=85.31.88.1,86.62.23.1,86.62.23.1
رد مع اقتباس
  #2 (permalink)  
قديم 05-24-2009, 07:33 AM
شبكي نشيط
تاريخ التسجيل: May 2009
المشاركات: 46
افتراضي

لحل مشاكل تاخر الياهو للابد
ip firewall mangle
add action=jump chain=prerouting comment="" connection-state=new disabled=no jump-target=tcp-services protocol=tcp
add action=jump chain=prerouting comment="" connection-state=new disabled=no jump-target=udp-services protocol=udp
add action=jump chain=prerouting comment="" connection-state=new disabled=no jump-target=other-services
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=20-21 new-connection-mark=ftp passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=22 new-connection-mark=ssh passthrough=yes protocol=tcp src-port=513-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=23 new-connection-mark=telnet passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=25 new-connection-mark=smtp passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=53 new-connection-mark=dns passthrough=yes protocol=tcp src-port=53
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=53 new-connection-mark=dns passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=80 new-connection-mark=http passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=110 new-connection-mark=pop3 passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=113 new-connection-mark=auth passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=119 new-connection-mark=nntp passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=143 new-connection-mark=imap passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=161-162 new-connection-mark=snmp passthrough=yes protocol=tcp \
src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=443 new-connection-mark=https passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=465 new-connection-mark=smtps passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=993 new-connection-mark=imaps passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=995 new-connection-mark=pop3s passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=1723 new-connection-mark=pptp passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=2379 new-connection-mark=kgs passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=3128 new-connection-mark=proxy passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=3987 new-connection-mark=win-ts passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=4242-4243 new-connection-mark=emule passthrough=yes protocol=tcp \
src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=1024-65535 new-connection-mark=overnet passthrough=yes protocol=tcp \
src-port=4661-4662
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=1024-65535 new-connection-mark=emule passthrough=yes protocol=tcp src-port=4711
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=5900-5901 new-connection-mark=vnc passthrough=yes protocol=tcp \
src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=6667-6669 new-connection-mark=irc passthrough=yes protocol=tcp \
src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=6881-6889 new-connection-mark=bittorrent passthrough=yes protocol=tcp \
src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=8080 new-connection-mark=http passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no dst-port=8291 new-connection-mark=winbox passthrough=yes protocol=tcp src-port=1024-65535
add action=mark-connection chain=tcp-services comment="" disabled=no new-connection-mark=other-tcp passthrough=yes protocol=tcp
add action=mark-connection chain=udp-services comment="" disabled=no dst-port=53 new-connection-mark=dns passthrough=yes protocol=udp src-port=1024-65535
add action=mark-connection chain=udp-services comment="" disabled=no dst-port=123 new-connection-mark=ntp passthrough=yes protocol=udp src-port=1024-65535
add action=mark-connection chain=udp-services comment="" disabled=no dst-port=1701 new-connection-mark=l2tp passthrough=yes protocol=udp src-port=1024-65535
add action=mark-connection chain=udp-services comment="" disabled=no dst-port=4665 new-connection-mark=emule passthrough=yes protocol=udp src-port=1024-65535
add action=mark-connection chain=udp-services comment="" disabled=no dst-port=4672 new-connection-mark=emule passthrough=yes protocol=udp src-port=1024-65535
add action=mark-connection chain=udp-services comment="" disabled=no dst-port=1024-65535 new-connection-mark=emule passthrough=yes protocol=udp src-port=4672
add action=mark-connection chain=udp-services comment="" disabled=no dst-port=12053 new-connection-mark=overnet passthrough=yes protocol=udp \
src-port=1024-6553
add action=mark-connection chain=udp-services comment="" disabled=no dst-port=1024-65535 new-connection-mark=overnet passthrough=yes protocol=udp \
src-port=12053
add action=mark-connection chain=udp-services comment="" disabled=no dst-port=1024-65535 new-connection-mark=skype passthrough=yes protocol=udp src-port=36725
add action=mark-connection chain=udp-services comment="" connection-state=new disabled=no new-connection-mark=other-udp passthrough=yes protocol=udp
add action=mark-connection chain=other-services comment="" disabled=no icmp-options=8:0-255 new-connection-mark=ping passthrough=yes protocol=icmp
add action=mark-connection chain=other-services comment="" disabled=no new-connection-mark=gre passthrough=yes protocol=gre
add action=mark-connection chain=other-services comment="" disabled=no new-connection-mark=other passthrough=yes
add action=change-mss chain=forward comment="" disabled=no new-mss=1448 protocol=tcp tcp-flags=syn
رد مع اقتباس
  #3 (permalink)  
قديم 05-24-2009, 07:40 AM
شبكي نشيط
تاريخ التسجيل: May 2009
المشاركات: 46
افتراضي لفتح صفحه معينه لغير المشتركين

رد مع اقتباس
  #4 (permalink)  
قديم 05-24-2009, 07:42 AM
شبكي نشيط
تاريخ التسجيل: May 2009
المشاركات: 46
افتراضي لفتح صفحه معينه لغير المشتركين

لجعل صفحة معينة تفتح لغير المشتركين مثلا جعلها صفحة للاعلانات او غيرها تتبع الخطوات التالية

ip hotspot walled garden
وتعمل مثل الي بالصورة


رد مع اقتباس
  #5 (permalink)  
قديم 05-24-2009, 07:44 AM
شبكي نشيط
تاريخ التسجيل: May 2009
المشاركات: 46
افتراضي جدول للسرعات في المايكروتيك

رد مع اقتباس
  #6 (permalink)  
قديم 05-24-2009, 07:45 AM
شبكي نشيط
تاريخ التسجيل: May 2009
المشاركات: 46
افتراضي

التحديد هنا عن طريق البايت

speed_08k
64000/64000

speed_16k
64000/128000

speed_24k
64000/192000

speed_32k
64000/256000


speed_48k
96000/384000


speed_50k
25000/50000

speed_64k
128000/512000

speed_99k
256000/800000

فى طريقة ثانية وهى نظام المعادلة

40K/256K 40K/2048K 40K/512K 30

20K/64K 20K/128K 20K/64K 30

32K/128K 32K/512K 32K/256K 30

40K/256K 40K/1024K 40K/512K 30

32K/64K 32K/128K 32K/80K 30


40K/128K 40K/4096K 40K/256K 10

40K/128K 40K/2048K 40K/256K 10
رد مع اقتباس
  #7 (permalink)  
قديم 05-24-2009, 07:47 AM
شبكي نشيط
تاريخ التسجيل: May 2009
المشاركات: 46
افتراضي جميع بورتات برامج الجات

كود:
Service Ports Chat & Messenger TCP Port 5050: Client Access only


Insider/Room Lists TCP Port 80: Client Access only

File Transfer TCP Port 80: Server Access.
Your ISP may block this port, as its used for web hosting.

You can change port in Messenger, Preferences, File Transfer.

Voice Chat UDP 5000-5010
TCP 5000-5001: Client Access
If UDP Fails, TCP will be used instead, see below
.
WebCam TCP Port 5100: Client Access

Super Webcam TCP Port 5100: Server Access

P2P Instant Messages TCP Port 5101: Server Access
PMs between Buddys may not use the Yahoo! Server, but this is not a requirement.


++++++++++++++++++++++++++++++++++++++++++++++++++ ++



قفل الويندوز ليف مسنجر

هذي معلومات وبورتات المسنجر الايف
Messenger server: port 1493, 1542, 1863, 1963, 80 TCP and 443 TCP
File Transfer/Sharing Folders: local: 1544 and 6891 - in fact 6720-65535 TCP from one source
Messenger Update: remote: 80 local: 1457
Remote Assistance If available): 3389 TCP
Audio: local: , 1556, 11771, 13803 and generally 5004-65535 UDP
Remote Desktop and whiteboard: local/remote: 389, 522, 1503, 1720, and 1731
Launching Games: 80
Video Conference: TCP 9000-9999, 5004-65535 UDP + 80
Sign-In: remote: 443 local: 1484, 2400


chat & messenger : port 5050 protocol TCP

VOICE CHAT : port 5000 - 5010 protocol UDP
port 5000 - 5001 protocol TCP

WEB CAM : port 5100 protocol TCP
P2P ( PEER TO PEER ) INSTANT MESSEGE : Port 5101 protocol TCP
رد مع اقتباس
  #8 (permalink)  
قديم 05-24-2009, 07:53 AM
شبكي نشيط
تاريخ التسجيل: May 2009
المشاركات: 46
افتراضي لوحبينه نعمل موقع داخلي علي سيرفر المايكروتيك


يعني لوحبينه نعمل دومين داخلي بدل منكتب ايبيه نكتب اي اسم احنا عيزينه وطريقه جميله لفلتره المواقع :
d6dba3f4e6:
رد مع اقتباس
  #9 (permalink)  
قديم 05-24-2009, 08:51 AM
شبكي نشيط
تاريخ التسجيل: May 2009
المشاركات: 46
افتراضي دي واجهه بس مش اي واجهه لاحلي منتدي(تدعم الاسم والباسوورد العربي)

رد مع اقتباس
  #10 (permalink)  
قديم 05-24-2009, 08:56 AM
شبكي نشيط
تاريخ التسجيل: May 2009
المشاركات: 46
افتراضي

وبكدا اقول السلام عليكم ولنا تكمله انشاء الله وارجو ان يلقي كلا بدلوه
رد مع اقتباس
إضافة رد


أدوات الموضوع
انواع عرض الموضوع

تعليمات المشاركة
لا تستطيع إضافة مواضيع جديدة
لا تستطيع الرد على المواضيع
لا تستطيع إرفاق ملفات
لا تستطيع تعديل مشاركاتك

BB code is متاحة
كود [IMG] متاحة
كود HTML معطلة
Trackbacks are متاحة
Pingbacks are متاحة
Refbacks are متاحة

الانتقال السريع


الساعة الآن 08:51 PM.


Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.2 - e15a
جميع مايطرح في المنتدى لا يعبر بالضرورة عن رأي إدارة المنتدى، وإنما يعبر عن رأي كاتبه فقط

a.d - i.s.s.w

قسم الشبكات اللاسلكية العام | جديد الشبكات اللاسلكية والأجهزة | قسم الدي اس إل والانترنت| الاتصال اللاسلكي للجيل الثالث | الجيل الثالث المطور والنطاق العريض عالي السرعة قسـم الستلايت والإنترنـت الفضائـي| قسم بيع الأجهزة اللاسلكية  | قسم حماية و اختراق الشبكات اللاسلكية | قسـم الستلايت والإنترنـت الفضائـي| مركز التحميل| متجر الشبكات اللاسلكية| Wireless cards | access point | Antenna | ADSL | wimax | Cable | Power Over Ethernet | Extensions WIFI | case | Control networks | Networking programs | Mobile Internet Devices

Preview on Feedage: Add to My Yahoo! Add to Google! Add to AOL! Add to MSN Subscribe in NewsGator Online
Add to Netvibes Subscribe in Pakeflakes Subscribe in Bloglines Add to Alesti RSS Reader Add to Feedage.com Groups Add to Windows Live
iPing-it Add to Feedage RSS Alerts Add To Fwicki Add to Spoken to You