Warning: Work in Progress...
This is a discussion on Linux Networking within the Linux/BSD/Unix Client/Server forums, part of *nix (Linux/BSD/Unix) category; Linux Networking As it is the result of a concerted effort of programmers around the world, Linux wouldn't have been possible without the global network. So it's not surprising that ...

Advertisement
Want to advertise? Learn how to remove ads

Notices

Tags : networking, linux
Thread Tools   Switch to Linear ModeSwitch to Hybrid ModeSwitch to Threaded Mode
Pezgee's Avatar
Pezgee
Mr.Modon
Posts/Threads: 501/25
Thanks: 136
Thanked 236 Times in 148 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power/Points: 189/13930
Pezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond repute
Default Linux Networking, Posted September 15th, 2005, 03:46 AM #1 (permalink) |
Linux Networking


As it is the result of a concerted effort of programmers around the world, Linux wouldn't have been
possible without the global network. So it's not surprising that in the early stages of development, several
people started to work on providing it with network capabilities. A UUCP implementation was running
on Linux almost from the very beginning, and work on TCP/IP-based networking started around autumn
1992, when Ross Biro and others created what has now become known as Net-1.
After Ross quit active development in May 1993, Fred van Kempen began to work on a new
implementation, rewriting major parts of the code. This project was known as Net-2. The first public
release, Net-2d, was made in the summer of 1993 (as part of the 0.99.10 kernel), and has since been
maintained and expanded by several people, most notably Alan Cox.

as Net-2Debugged. After heavy debugging and numerous improvements to the code, he changed its
name to Net-3 after Linux 1.0 was released. The Net-3 code was further developed for Linux 1.2 and
Linux 2.0. The 2.2 and later kernels use the Net-4 version network support, which remains the standard
official offering today.
The Net-4 Linux Network code offers a wide variety of device drivers and advanced features. Standard
Net-4 protocols include SLIP and PPP (for sending network traffic over serial lines), PLIP (for parallel
lines), IPX (for Novell compatible networks, which we'll discuss in

networks) and AX.25, NetRom, and Rose (for amateur radio networks). Other standard Net-4 features
include IP firewalling, IP accounting
and IP Masquerade

are supported. A very large variety of Ethernet devices is supported, in addition to support for some
FDDI, Token Ring, Frame Relay, and ISDN, and ATM cards.
Additionally, there are a number of other features that greatly enhance the flexibility of Linux. These
features include an implementation of the SMB filesystem, which interoperates with applications like



lanmanager
and Microsoft Windows, called Samba, written by Andrew Tridgell, and an implementation
of the Novell NCP (NetWare Core Protocol).



Different Streaks of Development


There have been, at various times, varying network development efforts active for Linux.
Fred continued development after Net-2Debugged was made the official network implementation. This
development led to the Net-2e, which featured a much revised design of the networking layer. Fred was
working toward a standardized Device Driver Interface (DDI), but the Net-2e work has ended now.
Yet another implementation of TCP/IP networking came from Matthias Urlichs, who wrote an ISDN
driver for Linux and FreeBSD. For this driver, he integrated some of the BSD networking code in the
Linux kernel. That project, too is no longer being worked on.
There has been a lot of rapid change in the Linux kernel networking implementation, and change is still
the watchword as development continues. Sometimes this means that changes also have to occur in other
software, such as the network configuration tools. While this is no longer as large a problem as it once
was, you may still find that upgrading your kernel to a later version means that you must upgrade your
network configuration tools, too. Fortunately, with the large number of Linux distributions available
today, this is a quite simple task.
The Net-4 network implementation is now quite mature and is in use at a very large number of sites
around the world. Much work has been done on improving the performance of the Net-4 implementation,
and it now competes with the best implementations available for the same hardware platforms. Linux is
proliferating in the Internet Service Provider environment, and is often used to build cheap and reliable
World Wide Web servers, mail servers, and news servers for these sorts of organizations. There is now
sufficient development interest in Linux that it is managing to keep abreast of networking technology as
it changes, and current releases of the Linux kernel offer the next generation of the IP protocol, IPv6, as a
standard offering.


Where to Get the Code


It seems odd now to remember that in the early days of the Linux network code development, the
standard kernel required a huge patch kit to add the networking support to it. Today, network
development occurs as part of the mainstream Linux kernel development process. The latest stable Linux
kernels can be found on
ftp.kernel.org in /pub/linux/kernel/v2.x/, where x is an even number.
The latest experimental Linux kernels can be found on
ftp.kernel.org in


/pub/linux/kernel/v2.y/
, where y is an odd number. There are Linux kernel source mirrors all
over the world. It is now hard to imagine Linux without standard network support.



| Reply With Quote
Pezgee's Avatar
Pezgee
Mr.Modon
Posts/Threads: 501/25
Thanks: 136
Thanked 236 Times in 148 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power/Points: 189/13930
Pezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond reputePezgee has a reputation beyond repute
Default FTP Server for Linux, Posted September 16th, 2005, 01:48 PM #2 (permalink) |
FTP SERVER

URL : www.wu-ftpd.org
URL : www.redhat.com
Check rpm packages
# rpm –q ftp

Download the rpm file called wu-ftpd ..***.rpm
# rpm –ivh wu-ftpd.x.x.x.rpm (install packages)

Ftp server install successfully. A file named wu-ftpd goes to /etc/xinet.d / - To run ftp server you should edit the wu-ftpd file .
# pico /etc/xinetd.d/wu-ftpd
Then just edit the last line –
disable = yes
To,
disable = no
And restart xinetd service
# service xinetd restart or
# /etc/init.d/xinetd/ restart

TEST FTP SERVER

Test your ftp server
# ftp localhost
Is it prompting for user name or password ?



SECURE YOUR FTP SERVER



Open /etc/xinetd.d /wu-ftpd

# pico /etc/xinetd.d/wu-ftpd
Then add the following line at the bottom of the lone
#############
only_from = 192.168.0.0/24
##################
That will prevents all other than that block of ip address.
| Reply With Quote
GouroB's Avatar
GouroB
Experienced Member
Posts/Threads: 157/1
Thanks: 4
Thanked 48 Times in 28 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power/Points: 104/6117
GouroB has a reputation beyond reputeGouroB has a reputation beyond reputeGouroB has a reputation beyond reputeGouroB has a reputation beyond reputeGouroB has a reputation beyond reputeGouroB has a reputation beyond reputeGouroB has a reputation beyond reputeGouroB has a reputation beyond reputeGouroB has a reputation beyond reputeGouroB has a reputation beyond reputeGouroB has a reputation beyond repute
Default Posted September 19th, 2005, 01:04 AM #3 (permalink) |
Guys any url bout Fedora core 2's software installation details can be found ? such as installing Cpanl , Direct Admin or Plask ... then ftpd , ssh2 .. ?
Pirate of the Time
| Reply With Quote
Cinderella's Avatar
Cinderella
Moderator
Posts/Threads: 1,926/18
Thanks: 394
Thanked 384 Times in 324 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power/Points: 211/13498
Cinderella has a reputation beyond reputeCinderella has a reputation beyond reputeCinderella has a reputation beyond reputeCinderella has a reputation beyond reputeCinderella has a reputation beyond reputeCinderella has a reputation beyond reputeCinderella has a reputation beyond reputeCinderella has a reputation beyond reputeCinderella has a reputation beyond reputeCinderella has a reputation beyond reputeCinderella has a reputation beyond repute
Default Posted January 9th, 2006, 02:47 AM #4 (permalink) |
Basic SSH server configuration how-to

http://www.linuxforum.com/linux_tutorials/16/1.php

--------------------------------------------------------------------------------

Installation and Configuration of Pure-FTPD

http://www.linuxforum.com/linux_tutorials/4/1.php

You can purchase cPanel from cPanel themselves which would cost you more or you can select to purchase cPanel/WHM from one of their licensed distributors:
http://www.cpanel.net/dist.cgi
Ok, so now you have your cPanel license and the license is bound to your server ip address YAY. Ok so this is what you do next
Login to the root account of your server then download cPanel thus:
# sh |wget http://layer1.cpanel.net/latest
the # being your root commandline prompt of course.
don't want to do it that way. kewl.
# wget http://layer1.cpanel.net/cpanel-universal-install.sea
# sh cpanel-universal-install.sea
There you go, now you can be a webhost! lol
more help
http://www.cpanel.net/docs/whm/
§wëèt Îññô¢êñt Åñgêl

Last edited by Cinderella; January 9th, 2006 at 02:58 AM..
| Reply With Quote
Reply  

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Display Modes
Linear Mode Linear Mode
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Advertisement
Want to advertise? Learn how to remove ads


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Copyright ©2005 - 2008, doshomik.net
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
All times are GMT +7. The time now is 06:10 PM.