منتدى ثقافى أجتماعى
 
الرئيسيةالبوابةأحدث الصورالتسجيلدخول

شاطر  | 
 

 Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال

استعرض الموضوع التالياستعرض الموضوع السابقاذهب الى الأسفل
كاتب الموضوعمن فضلك أقرأ الموضوع بعمق وأضف رد يعبر عن فهمك لمضمونه
Admin
1
1
Admin

عدد الرسائل : 3215
نقاط التقييم : 89195
المهنة : أستاذ جامعى
مقياس النشاط
Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Left_bar_bleue90 / 10090 / 100Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Right_bar_bleue

100

^ : ^

تكريم الأعضاء -

Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال 3h5910



Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Empty
مُساهمةموضوع: Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال  Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Icon_minitime2011-03-26, 16:28أنت الرقيب على نفسك

المصدر :- منتدى الشبكة العربية
إضافة تقييم للموضوعالكاتب :- Admin
 
Introduction



Firestarter is an application which provides a graphical interface for quickly configuring firewall rules and settings (policies). Firestarter itself is not a firewall, rather, it is a frontend for configuring iptables, which is the firewall system built into the Linux kernel. Firestarter also provides real-time monitoring of network traffic.

Note: Although Firstarter is fully functional, active development ended in 2005 with version 1.0.3. For an overview of alternative applications, see Firewall.


Key Features



  • Easy to use graphical interface.
  • Suitable for use on desktops, servers and gateways.
  • Enables Internet connection sharing.
  • Allows you to define both inbound and outbound access policy.
  • Option to whitelist or blacklist traffic.
  • Wizard for easily configuring your firewall.
  • Sets up DHCP for a local network.
  • Real time firewall events view.
  • View active network connections, including any traffic routed through the firewall.



Screenshots



  • Firestarter 1.0.3


[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذه الصورة]


Installation





Hints and Tips




Recommended Settings



To open the preference window, click Edit → Preferences. The preferences are divided into two categories; options that change the interface and options that affect the firewall. Select the following options in the corresponding sections:


Interface Options



Check Enable tray icon and Minimize to tray on window close. (Note: Your firewall will be active when you boot regardless of whether Firestarter is running in the tray or not.)


Policy Options



Check the Apply policy changes immediately.


Firewall Options




ICMP Filterings



Select Enable ICMP filtering and check Echo request (ping) and Echo reply (pong) (for network connection testing/troubleshooting).


Disable/Enable the Firewall



To disable the firewall click Firewall → Stop Firewall, or by click the Stop Firewall icon when the Status tab is selected.

To re-enable the firewall click Firewall → Start Firewall, or click the Start Firewall icon when the Status tab is selected.


Allow an Inbound Event from the Events Tab



Right click on the connection you would like to allow and select the action you would like to take from the pop-up menu (this is equivalent to making a new policy). The description of the actions are as follows:



  • Allow Connections from Source: This action gives the source of the connection permission to make any connection it wants. This is equivalent to trusting the source blindly and should be carefully used.


  • Allow Inbound Service for Everyone: This action allows everyone to access the service the connection was previously blocked from.


  • Allow Inbound Service for Source: This action allows only this specific source to access the service in question. This is known as stealthing, no other host except the source will be aware that the service even exists.



Troubleshooting




NetworkManager



It has been reported that there is a conflict between Firestarter and NetworkManager when booting that can cause the firewall policies to not initialize correctly.

A possible workaround is to edit /etc/firestarter/firestarter.sh

gksu gedit /etc/firestarter/firestarter.sh

Comment out the following block:

if [ "$MASK" = "" -a "$1" != "stop" ]; then
echo "External network device $IF is not ready. Aborting.."
exit 2
fi

So that it looks like this:

#if [ "$MASK" = "" -a "$1" != "stop" ]; then
#echo "External network device $IF is not ready. Aborting.."
#exit 2
#fi

Save your changes and re-boot.


Stalled connections



When you use internet connection with traffic limiting by dropping packets (for example, ADSL ISP) firestarter may be a cause stalling TCP connections. For example, when you try to scp some megabytes, process hangs up and scp writes "stalled".

This problem is due to bug #258863 in firestarter. Firestarter contains script (/etc/firestarter/sysctl-tuning), that disables in kernel some TCP mechanisms, that are responsible for effective connection in network with packet loss: SACK, Window-scaling and TCP-timestamps.

If you have such problems, consider using UFW or comment out following lines in the script mentioned above (I have not tested this):

# Turn off TCP Timestamping in kernel
if [ -e /proc/sys/net/ipv4/tcp_timestamps ]; then
echo 0 > /proc/sys/net/ipv4/tcp_timestamps
fi

# Set TCP Re-Ordering value in kernel to '5'
if [ -e /proc/sys/net/ipv4/tcp_reordering ]; then
echo 5 > /proc/sys/net/ipv4/tcp_reordering
fi

# Turn off TCP ACK in kernel
if [ -e /proc/sys/net/ipv4/tcp_sack ]; then
echo 0 > /proc/sys/net/ipv4/tcp_sack
fi

#Turn off TCP Window Scaling in kernel
if [ -e /proc/sys/net/ipv4/tcp_window_scaling ]; then
echo 0 > /proc/sys/net/ipv4/tcp_window_scaling
fi

Like this

# Turn off TCP Timestamping in kernel
#if [ -e /proc/sys/net/ipv4/tcp_timestamps ]; then
# echo 0 > /proc/sys/net/ipv4/tcp_timestamps
#fi

# Set TCP Re-Ordering value in kernel to '5'
#if [ -e /proc/sys/net/ipv4/tcp_reordering ]; then
# echo 5 > /proc/sys/net/ipv4/tcp_reordering
#fi

# Turn off TCP ACK in kernel
#if [ -e /proc/sys/net/ipv4/tcp_sack ]; then
# echo 0 > /proc/sys/net/ipv4/tcp_sack
#fi

#Turn off TCP Window Scaling in kernel
#if [ -e /proc/sys/net/ipv4/tcp_window_scaling ]; then
# echo 0 > /proc/sys/net/ipv4/tcp_window_scaling
#fi

Save your changes and restart firewall:

sudo /etc/init.d/firestarter restart


See Also





  • Firewall - An introduction to firewalls, and how to manage them in Ubuntu.


  • Iptables - The tables provided by the Linux kernel firewall.


  • UFW - The default firewall configuration tool for Ubuntu.


  • Gufw - A GUI frontend for controlling UFW.

التحميل من هناااااااااااا

[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط]

موضوع رقم… 1732 -*- مساهمة رقم… 4862

 

 
توقيع العضو Admin

ஐ◄█ https://arab.forumburkina.com/ ░█►ஐ

Review https://arab.forumburkina.com// on alexa.com
 
http://www.smwak.com الرجوع الى أعلى الصفحة اذهب الى الأسفلمنتدى الشبكة العربية
سارة بوزيان
2
2
سارة بوزيان

عدد الرسائل : 1813
نقاط التقييم : 24317
مقياس النشاط
Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Left_bar_bleue80 / 10080 / 100Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Right_bar_bleue

100

^ : ^

تكريم الأعضاء -

Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Hart210



Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Empty
مُساهمةموضوع: رد: Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال  Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Icon_minitime2011-03-30, 19:01أنت الرقيب على نفسك

المصدر :- منتدى الشبكة العربية
إضافة تقييم للموضوعالكاتب :- سارة بوزيان
 
شكراً للطرح الرائع
بارك الله فيك بانتضار جديدك
تحياتي لكِ

موضوع رقم… 1732 -*- مساهمة رقم… 4942

 

 
توقيع العضو سارة بوزيان

ஐ◄█ https://arab.forumburkina.com/ ░█►ஐ

Review https://arab.forumburkina.com// on alexa.com
 
الرجوع الى أعلى الصفحة اذهب الى الأسفلمنتدى الشبكة العربية
{احلاهم واتحداهم}
9
9
{احلاهم واتحداهم}

عدد الرسائل : 401
نقاط التقييم : 15594
مقياس النشاط
Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Left_bar_bleue40 / 10040 / 100Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Right_bar_bleue

100

^ : ^

تكريم الأعضاء -

Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Hart210



Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Empty
مُساهمةموضوع: رد: Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال  Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال Icon_minitime2011-08-11, 00:28أنت الرقيب على نفسك

المصدر :- منتدى الشبكة العربية
إضافة تقييم للموضوعالكاتب :- {احلاهم واتحداهم}
 
[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذه الصورة]

رووعه الموضوع

تسلم يدينك (يمناك)

ماشاء الله عليك

موضوع رقم… 1732 -*- مساهمة رقم… 19384

 

 
توقيع العضو {احلاهم واتحداهم}

ஐ◄█ https://arab.forumburkina.com/ ░█►ஐ

Review https://arab.forumburkina.com// on alexa.com
 
الرجوع الى أعلى الصفحة اذهب الى الأسفلمنتدى الشبكة العربية
 

Firestarter 1.0.3 network برنامج توزيع الأنترنت ومشاركة الأتصال

استعرض الموضوع التالياستعرض الموضوع السابقالرجوع الى أعلى الصفحة
صفحة 1 من اصل 1

صلاحيات هذا المنتدى:لاتستطيع الرد على المواضيع في هذا المنتدى
الشبكة العربية ::  منتديات الكومبيوتر والأنترنت والموبيل :: منتدى برامج إدارة الشبكات وتوزيعات الأنترنت-
©phpBB | Ahlamontada.com | منتدى مجاني للدعم و المساعدة | التبليغ عن محتوى مخالف | آخر المواضيع
الشبكة العربية