home hardware prices news articles forums photos user reviews
Go Back   Tech Support Forums - TechIMO.com > PC Hardware and Tech > Linux and Unix
Ask a Tech Support Question (free)!

File manger? php+apache+samba(maybe mysql auth backend)

Reply
Get bargains at  »  Dealighted.com
 
Thread Tools Search this Thread
Currently Active Users: 1927
Discussions: 200,511, Posts: 2,374,419, Members: 245,834
Old August 27th, 2004, 03:33 PM   Digg it!   #1 (permalink)
Senior Member
 
flashingcurser's Avatar
 
Join Date: Jan 2002
Location: ThirdWorld- Montana
Posts: 608
File manger? php+apache+samba(maybe mysql auth backend)

We have an engineer who lives 200+ miles from the office.

Has anyone used a web based file manager for something similar? If so, which one and how successful was it?

Another thought is to use a vpn, though satelite uploads tend to drop packets and cause havok with vpn servers (or so I'm told). If this is not true it could be a solution. If it is the solution than would I need to give the engineer a shell account and chroot--or would there be another way for him to access/edit samba shares I'm still unclear as to how this would work.


Any thoughs on how our electrical engineer can remotely access his drawings and edit them? We also want some sort of secure login. Clients dont matter that much, we mostly just want to protect the server. No account numbers or anything, just many hours($'s) in creating the files.
flashingcurser is offline   Reply With Quote
Old August 27th, 2004, 04:11 PM     #2 (permalink)
Not Really a Member
 
Join Date: Oct 2001
Posts: 25,215
What about a Terminal server, or a citrix solution?
I'd suggest diong a TS session over a VPN for security, but the Citrix should be OK as long as you put it with behind SSL
Depends on your budget
__________________
Helicopters don't fly; they vibrate so much and make so much noise that the earth rejects them.
vass0922 is offline   Reply With Quote
Old August 27th, 2004, 06:27 PM     #3 (permalink)
Senior Member
 
flashingcurser's Avatar
 
Join Date: Jan 2002
Location: ThirdWorld- Montana
Posts: 608
I'm the new guy there and work with the electrical engineer. They currently have 5 win 98 computers on their peer to peer network (no enterprise solutions lol) and I'm trying to give them a few modern network services. They have NO buget for IT.

They will give me the time to set it up, a scrap heap of old computers, and money for some hardware.

The basics I would like to start with are:

Central job/file location (samba)
Remote back-up server (should be pretty easy with rsync/ssh+bash script)
Some sort of remote connection for the electrical engineer (?)

Then I would like to set up a local webserver for craploads of dynamic content.

Vass have you set up a gpl vpn? The ideas you gave me sound great -- but definately not in the buget.

Thanks
flashingcurser is offline   Reply With Quote
Old August 30th, 2004, 02:05 AM     #4 (permalink)
Senior Member
 
flashingcurser's Avatar
 
Join Date: Jan 2002
Location: ThirdWorld- Montana
Posts: 608
I found WinSCP, It seems to do all we need for right now.

Linky

Great little proggie.

flashingcurser is offline   Reply With Quote
Old August 30th, 2004, 02:18 AM     #5 (permalink)
Senior Member
 
James T's Avatar
 
Join Date: Jul 2004
Location: New Zealand
Posts: 582
I use OpenVPN from either win2k or winxp to linux. This creates a virtual network device on both computers. I've run it through a cellphone GPRS connection regularly. Works well.
James T is offline   Reply With Quote
Old August 31st, 2004, 02:24 AM     #6 (permalink)
Senior Member
 
flashingcurser's Avatar
 
Join Date: Jan 2002
Location: ThirdWorld- Montana
Posts: 608
I am looking at openvpn.

2 Questions

1 Do I need ppp
2 Do I need tun/tap as modules (I now have it built in)



Gentoo doesnt seem to make the correct config directorys--when I get time I'll have to bild from source,


flashingcurser is offline   Reply With Quote
Old August 31st, 2004, 06:04 PM     #7 (permalink)
Senior Member
 
James T's Avatar
 
Join Date: Jul 2004
Location: New Zealand
Posts: 582
No need for ppp but of course you do need a network connection between the two boxes. i.e. send tcp packets back and forth on the chosen port.

To get the tap device in the kernel. I had
<M> Universal TUN/TAP device driver support

Other guff...

I'm still on openvpn 1.5.0 so these might be a little out of date on the new builds.

There was a reason I used tap instead of tun. I can't remember what it was sorry.

most configs in /etc/openvpn some in /etc/rc.d and build under the /usr/local/src tree

# my conf file on linux
dev tap
ifconfig 10.0.1.1 255.255.255.0
keysize 448
secret static.key
port 6001
comp-lzo
ping 15
verb 3
mute 5

I use the rc.d script from
# Contributed to the OpenVPN project by
# Douglas Keller <doug@voidstar.dyndns.org>

Put this in rc.local (I use slackware which has nice start scripts)
/etc/rc.d/rc.openvpn start

I always build these from the sources. It's generally the blindingly easy ./configure, make, make install sequence (which I read the READMEs to check).

On windows

remote xxx.xxx.xxx.xxx
port 6001
dev tap
ifconfig 10.0.0.2 255.255.255.0
secret static.key
keysize 448
ping 60
comp-lzo
verb 4
mute 10
James T is offline   Reply With Quote
Old September 1st, 2004, 12:55 AM     #8 (permalink)
Senior Member
 
flashingcurser's Avatar
 
Join Date: Jan 2002
Location: ThirdWorld- Montana
Posts: 608
Cool man, thank you for all the info.


On a side note, I may go back to slack (really my favorite distro). I like gentoo portage, but on rare occasions like this where the ebuild is messed up, I wish I had the eloquence and simplicity of slackware. I have to make the correct directories and guess at permissions.

Thanks again

flashingcurser is offline   Reply With Quote
Old September 1st, 2004, 12:59 AM     #9 (permalink)
Senior Member
 
flashingcurser's Avatar
 
Join Date: Jan 2002
Location: ThirdWorld- Montana
Posts: 608
Oh by the way, why the 448 bit key? Does that give much more performance over a 512 key?

Also can tunneling be built into the kernel? Or do you HAVE to have module?
flashingcurser is offline   Reply With Quote
Old September 1st, 2004, 01:12 AM     #10 (permalink)
Senior Member
 
James T's Avatar
 
Join Date: Jul 2004
Location: New Zealand
Posts: 582
I never tried building tunneling into the kernel. Tried stunnel (TCP only connections) and FreeS/WAN(complicated) and OpenVPN(easy and worked) and stopped there

From the man page.

The default is BF-CBC, an abbreviation for Blowfish in Cipher Block Chaining mode. Blowfish has the advantages of being fast, very secure, and allowing key sizes of up to 448 bits. Blowfish is designed to be used in situations where keys are changed infrequently.
James T is offline   Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search

Similar Threads
Thread Thread Starter Forum Replies Last Post
Would there be any problems with this? ChoaticWhisper Webmastering and Programming 9 March 8th, 2005 03:46 AM
php, mysql, apache, winxp sixf00t4 Webmastering and Programming 6 October 13th, 2002 05:12 AM
what's xml, sql, and whatever else there is? <[o_0]> Webmastering and Programming 18 January 27th, 2002 06:54 PM
PHP/mySQL Puzzler DeafScribe Webmastering and Programming 10 January 12th, 2002 10:25 AM


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Most Active Discussions
Is It Just Me? (1636)
windows 7 retail and rtm (5)
FT HOOD attack: 7 killed 12 injured (67)
Review My Build (6)
HELP!!! What do you think of this s.. (16)
Looking for a graphic card that wil.. (30)
Assosiations (21498)
My 1st pc build (40)
PC Modern Warfare 2: it's much wors.. (12)
Aero in Vista (7)
core i7 extreme 975, nvidia 9400gt (9)
How to Ship a PC (16)
Building my first computer (13)
[F@H SPAM 11/1/09]New month . . . n.. (33)
Recent Discussions
windows 7 retail and rtm (5)
New processor technical problem (0)
boot from CD-ROM in chipset via P4M80.. (2)
Powe Director v8 (0)
Windows Experience Index is screwed u.. (3)
Review My Build (6)
FAT32 to NTFS file system in Win2kpro (4)
Internet very slow since updating AVG.. (8)
Motherboards and my curse... (25)
HELP!!! What do you think of this sys.. (16)
New Processor, Monitor will not turn .. (2)
2009 Build (4)
My 1st pc build (40)
Freezing During Music/Movies (1)
ext. sound card laptop to stereo syst.. (2)
Remote Desktop via SSH and error mess.. (2)
Help and Support disappeared from my .. (0)
[F@H SPAM 11/1/09]New month . . . new.. (33)
Basic applications needed for "r.. (1)
core i7 extreme 975, nvidia 9400gt (9)
hard drive problem (2)
Win7 TrustedInstaller Permissions (2)
Speed up Win 7 boot time a bit (1)
Hard Drive test program (2)
wireless westell versalink model 327w (1)


All times are GMT -4. The time now is 09:27 AM.
TechIMO Copyright 2008 All Enthusiast, Inc.



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28