Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,242
» Latest member: moquber
» Forum threads: 4,031
» Forum posts: 16,406

Full Statistics

Online Users
There are currently 698 online users.
» 0 Member(s) | 693 Guest(s)
Applebot, Baidu, Bing, Google, Yandex

Latest Threads
how to allow only steam t...
Forum: Xorg Problems
Last Post: moquber
2026-03-17, 09:40 PM
» Replies: 0
» Views: 145
Wi-Fi works for a few min...
Forum: Network Problems
Last Post: kabifff
2025-12-15, 12:57 AM
» Replies: 0
» Views: 539
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 3,921
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 124,695
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 75,058
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 5,307
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 9,074
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 47,208
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 165,352
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 97,690

 
  FTP Considerations
Posted by: Dungeon-Dave - 2009-07-27, 10:15 AM - Forum: FTP Server - No Replies


Some good advice in other threads, so I thought I'd consolidate it here:

 

Firstly, consider:

 



<ol style="list-style-type: decimal">
[*]WHY set one up? (read/write/delete permissions, and who?)


[*]WHO is using it? (authenticated/guest/anonymous)


[*]HOW is it being used? (quota checking, secure connections, archiving old files, port numbers)


[*]WHAT will the end users use for client connectivity? (FTP client/command-line/sftp etc)


</ol>


 

Some simple answers are:

- I'm setting one up for friends to share photos. Each friend will have upload/download access to a shared area, but not be able to delete anything. For reasons of security, they will not be able to navigate out of this area either.

- I'm running a gaming server and I want two admins to be able to drop new maps and mods into a directory that anyone can download. For security, FTPS need to be enabled so that the admin username/passes aren't transmitted plain-text, but anonymous access will not require encrypted connections - but will be subject to quota controls to prevent bandwidth-hogging.

 

These are what people refer to as "problem specification" - without making it clear what your end objectives are, you may well end up with something hastily-configured that's leaving you open for attack.

 

Some security considerations are:


  • FTPS = uses secure (encrypted) connections over FTP, has a slight performance overhead with the encryption/decryption process.


  • SFTP = can use ordinary SSH/SCP so don't need an FTP server, but means potentially giving shell access to a user.


  • Port num: port 20 and 21 are commonly used for FTP servers, and get regularly sniffed. Consider binding the port number to something different, such as 12321, 54321, 21021 etc, to move it out of the range of impatient port-scanners.


  • PASV/PORT connections: may need to punch a hole in your firewall - or advertise which port is in use - for transfer to work properly


  • Capacity planning: is it possible for someone to fill up your filesystem, or have you got quota management on?


  • Permissions: group users into roles (uploader/downloader/manager/viewer etc) then assign privs per role.


  • Auditing: check logfiles (use logwatch) to monitor activity, particularly for nefarious behaviour. Consider using something like AWStats to report usage.


  • User mapping: every file/directory under Linux is owned by a user and group; if you have virtual FTP users, who will be the eventual owner of uploaded content?




 

Considerations such as the above will determine your choice of FTP software. Largely speaking, there are four to choose from:

 



<ol style="list-style-type: decimal">
[*]WU_FTP (Wisconsin FTP) - basic, feature-light.. don't use it.


[*]vsFTPD - Very Secure FTPD.


[*]ProFTPD


[*]Pure-FTPd - my choice.


</ol>


Print this item

  Postfix virtual user transport - help!
Posted by: Dungeon-Dave - 2009-07-26, 07:32 PM - Forum: SMTP - Replies (1)


Strange issue here, but I'm sure it is possible under Postfix.

 

I've been running some mail servers successfully for some time, but now want to tighten up some controls.

 

At present, my home machine accepts mail for a few of my domains, filters out local recipient addresses (drops them into local mailboxes) and anything else then hits transport to get forwarded upstream to another mail server. That way, my mails stay local, mails for my mates get forwarded (transport) to our public mail server (and drops into their POP3 mailboxes) and mails with unmatched recipients are bounced by the upstream server.

 

Now I want to change things slightly. I want to have a whitelist of valid addresses (like local_recipients) on the home server, and if incoming mails don't match these then immediately reject them. Unfortunately, postfix only sees recipients in my virtual.db and not transport.db, so I get my mails but my mates' are rejected with "User unknown in local recipient table".

 

The only workaround I've managed is to flick "local_recipient_maps = " so that postfix won't bounce recipients unlisted in virtual.db.

 

So.. anyone shed any light here?

Print this item

  Linus: Microsoft Hatred is a Disease
Posted by: anyweb - 2009-07-24, 07:19 PM - Forum: Linux News - No Replies


So, Microsoft submits 20000 lines of code to the Linux kernel, all licensed under the GPL. Microsoft, who considers Linux a great threat, and once called the GPL a "cancer". Opinions on this one are flying all around us, but what does Linus Torvalds, Linux' benevolent dictator, think about all this?

 

Linus hasn't actually looked at the code yet. It's driver code, low-risk and he isn't very interested in driver code anyway. He trusts the maintainers will do their jobs. "I'll likely look at it when the code is actually submitted to me by the maintainers (Greg [Kroah-Hartman], in this case), just out of morbid curiosity," Linus adds.

 

As most of you will be aware of, Linus is very forthright, and generally doesn't hold back when it comes to his opinions. He's also very pragmatic, and both of these qualities come forward quite clearly when Linus talks about Microsoft's code drop. I'm not going to squeeze his words into running text.

 

more > http://www.osnews.com/story/21887/Linus_..._a_Disease

Print this item

  Running Ubuntu -> Flashing Screen
Posted by: EHHO - 2009-07-23, 05:04 PM - Forum: Just Starting Linux - Replies (4)


Hello there,

 

First of all, let me apologize for my poor English. I'm not a native English speaker.

 

My problem is as follows:

 

I just downloaded Ubuntu 9.04 because I have an old PC standing on my desk an I figured, I could finally give Linux a try. After burning the ISO to a disk and booting it up, I get a weird 'flashing' screen. Flashing perhaps is not the right word, it's more like the image is shifting left to right (or right to left for that matter) very rapidly.

 

When i put my mouse (which btw is shown just as it should) over the top left corner I can (barely) see a menu coming down. Just because the screen gets a little lighter in that part.

 

Can someone tell me what to do? I already used the 'Check for errors' (or whatever it's called in English) method in the startup screen and nothing came up.

 

Thanks in advance!

 

P.S. I'm using 'boot from disk' mode, not an installed version.

Print this item

  Sharing drives and folders
Posted by: Bakshara - 2009-07-23, 01:38 PM - Forum: How Do I? - Replies (4)


How can I share a hard drive or a folder as hidden?

 

I have a server (Intel 120 OCed to 225 w/ windoze 2000 and ZoneAlarm) that has access to my windoze partition and my wife's PC. Thanks to DMA it has no problems keeping up with our computers. Yeah it takes five minutes to boot up. Once booted it gets shoved back in the closet and forgotten.

 

However, all it has to do is:

1) ZoneAlarm tell NIC 2, "Yes you can pass that info from NIC 1" or "Nope! Not allowed!"

2) Scan our PC's for viruses. I just hate having a virus scanning util on my PC slowing everything down.*

 

*Note: I have not gotten very many virus. My current total is: Two viruses and one hyjacking over the span of 16 years. That's PC years, not total 'puter years.

 

Thanks in advance.

Print this item

  Do I need repositories?
Posted by: ionlylooklazy - 2009-07-22, 02:12 PM - Forum: Just Starting Linux - Replies (2)


Hello,

 

I'm about to be a new linux user! I am currently in the process of installing Yellow Dog 6.1 on my PS3.

 

During the installation I was given the opportunity to specify any repositories I wanted to include.

Now I don't even know what a repository does, would there be a windows analogy somebody could relate?

 

I chose not to install any, but I noticed there was an option to install repositories at a later time.

 

I found this thread, but didn't find it very helpful:

 

https://www.linux-noob.com/forums/index.php?showtopic=2417

 

Thanks for any help!

~laz

Print this item

  Event Mechanism
Posted by: xMan - 2009-07-16, 10:47 AM - Forum: General Chat - No Replies


Hello all there,

 

I am newbe to unix programing.

 

I want to implement event mechanism just like

Code:
__event


,

Code:
__hook


and

Code:
__raise


in VC++.

 

Is there any way to do so in linux C++?

 

Sorry if i have posted it in wrong forum.

 

Regards,

Manish Patel

Print this item

  Who needs games when you've got bling.
Posted by: anyweb - 2009-07-12, 08:01 PM - Forum: Linux News - Replies (1)


"My eldest son is ten years old. He as been using computers in one way or another since he was 4, and he has already seen Linux because I had installed Ubuntu and SLED 10 on his XP computer some years ago. He impressed me some years ago when he got into bzflags, but he never really got interested in Linux simply because of the lack of games (that interested him).

 

It's now early July, and tonite Christopher did a yum update after he had a problem getting compiz to work properly. That's pretty cool because at the start of June, I set him a challenge to use nothing but Linux on his computer for a month (I thought he'd last a few days and then give up).

 

The month has passed and I wanted to see what Christopher thought about using Linux daily."

 

way to go Christopher !!!!!

Print this item

  music input/conversion
Posted by: gmrox - 2009-07-10, 01:32 PM - Forum: How Do I? - Replies (2)


Does anyone know of a linux(Fedora 10) package which can handle input of cd's and cassette tapes, provide editing facilities and convert recorded sound files to mp3 format? (Equivalent of basic Magix software for Windows)

 

Cheers, GM

Print this item

  Google announces Chrome OS
Posted by: hybrid - 2009-07-08, 05:45 AM - Forum: Linux News - No Replies


Quote:It's been an exciting nine months since we launched the Google Chrome browser. Already, over 30 million people use it regularly. We designed Google Chrome for people who live on the web -- searching for information, checking email, catching up on the news, shopping or just staying in touch with friends. However, the operating systems that browsers run on were designed in an era where there was no web. So today, we're announcing a new project that's a natural extension of Google Chrome -- the Google Chrome Operating System. It's our attempt to re-think what operating systems should be. 

Google Chrome OS is an open source, lightweight operating system that will initially be targeted at netbooks. Later this year we will open-source its code, and netbooks running Google Chrome OS will be available for consumers in the second half of 2010. Because we're already talking to partners about the project, and we'll soon be working with the open source community, we wanted to share our vision now so everyone understands what we are trying to achieve.
 

I have to admit, I'm starting to wonder whether we really need yet another attempt at a netbook OS...

 

Source -- Official Google Blog

Print this item