LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   wanna anyone to get a complete tutorial ??? (https://www.linuxquestions.org/questions/linux-networking-3/wanna-anyone-to-get-a-complete-tutorial-201593/)

ikillu 07-06-2004 12:46 AM

wanna anyone to get a complete tutorial ???
 
Hi,
If wanna anyone to get cpmplate guide of NFS setup, web server setup, DNS setup etc. just contact me or leave message in forum that which guide do u need. you get 100% good solution. Grunted !!!

salparadise 07-06-2004 02:30 AM

a step by guide to "how to share a internet connection (not dial up) between three pc's all running Linux."

pc 1 has net connection / running fedora core 2

pc2 mandrake 10

pc 3 mandrake 10 or suse 9.1 pro

connected via (definitely) working NIC's to a 24 port hub.

nfs (which is currently set up correctly, MUST still be working after net connection is shared.)

david_ross 07-06-2004 12:36 PM

The forum rules do not permit advertising. Please visit http://www.linuxquestions.org/advertising/ for more information on advertising. Feel free to contact the forum admin if you have any questions about this policy.

ikillu 07-21-2004 03:41 AM

How to Share Interner connection in Fedore OR Redhat
 
Hi salparadise,
I am sorry for delay reply. I was bussy last few days. however, you can share your Net connection vi proxy or masq. here I tell you how u can share net connectin vi Squid proxy server.

1st check this rpm already install or by this command

$rpm -qa|grep squid

If it is not install then install this first then then email. I will send email u with full instruction of Next final step.

chort 07-22-2004 12:04 AM

Please do not send answers to questions privately. First, this doesn't let the rest of the community share the knowledge (if the answer is helpful). Second, this can lead people to fall prey to bad advice, if no one else is able to see it to review accuracy.

I would caution any member not to trust technical advice that they receive secretly. Never install software sent to you through the web. If you have any doubts, post them here and let people look them over before following suspicious advice.

ikillu 07-22-2004 07:30 AM

How to Setup ur Squid for sharing Internet connection
 
here is Squid (proxy server) setup guide.
1. backup ur original Squid config file
$ cp /etc/squid/squid.conf /etc/squid/squid.conf.backup
2. open squid config file.
$ vi /etc/squid/squid.conf
3. delete all text and paste blow line
#======== Start Here
icp_port 0
hierarchy_stoplist cgi-bin ?
acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
http_port 80
cache_mem 42 MB
cache_replacement_policy heap GDSF
memory_replacement_policy heap GDSF
cache_dir ufs /var/lib/squid 200 16 256
acl localnet src 192.168.1.0/255.255.255.0
acl localhost src 127.0.0.1/255.255.255.255
acl Safe_ports port 80 443 210 70 21 1025-65535
acl CONNECT method CONNECT
acl all src 0.0.0.0/0.0.0.0
http_access allow localnet
http_access allow localhost
http_access deny !Safe_ports
http_access deny CONNECT
http_access deny all
cache_mgr root
cache_effective_user squid
cache_effective_group squid
logfile_rotate 0
log_icp_queries off
cachemgr_passwd my-secret-pass all
buffered_logs on
#=========Close here===============

4. restart squd service
$ service squid restart
Note: This method work in RedhatLinux.
have a Good Day!


All times are GMT -5. The time now is 04:23 AM.