New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !

Search found 1529 matches

by Gordon
19 Dec 2011, 02:10
Forum: B2 & B3 Support
Topic: Need to connect to MySQL on port 3306
Replies: 11
Views: 12469

Re: Need to connect to MySQL on port 3306

Sounds like a routing/DNS issue. The firewall settings control just the outside (WAN) interface, so if this solves it for you that would imply that MySQL is communicating primarily over the WAN interface. It should be possible to verify this using netstat after you opened a session: # netstat -an | ...
by Gordon
18 Dec 2011, 14:51
Forum: B2 & B3 Support
Topic: Need to connect to MySQL on port 3306
Replies: 11
Views: 12469

Re: Need to connect to MySQL on port 3306

The default for MySQL is to create host-bound users. If you get phpMyAdmin you can easily verify that what you think is just user "jan" is in fact user "jan@bubba". If you want Jan to connect from any place the user should be named "jan@%". Unfortunately I do not know o...
by Gordon
18 Dec 2011, 14:20
Forum: B2 & B3 Support
Topic: Virtual hosts redirect to /admin
Replies: 20
Views: 25511

Re: Virtual hosts redirect to /admin

ah yes. This issue just keeps on popping up, there must be a dozen threads with this exact question, and the real issue is that the Bubba interface in not in a virtualhost. Should be an easy fix yes? Actually the Bubba interface is a a virtualhost, or are you referring to the /admin page? The quick...
by Gordon
18 Dec 2011, 14:15
Forum: B2 & B3 Support
Topic: Virtual hosts redirect to /admin
Replies: 20
Views: 25511

Re: Virtual hosts redirect to /admin

OK. Did that. Now everything is truly strange, probably not because this last change. What do you mean with "everything is truly strange"? Is the "harmonyhill" page now using the right webroot but everything else gone quirky? If you have DNS names pointing to your IP that do not...
by Gordon
18 Dec 2011, 13:55
Forum: B2 & B3 Support
Topic: Virtual hosts redirect to /admin
Replies: 20
Views: 25511

Re: Virtual hosts redirect to /admin

should that not be >> instead of > Same thing - it's a file that does not exist in the default setup and the only thing it should do is make sure that the directive is added before the first vhost definition. Since I "invented" the file I'm not expecting anything else to be in there that ...
by Gordon
18 Dec 2011, 08:01
Forum: B2 & B3 Support
Topic: Virtual hosts redirect to /admin
Replies: 20
Views: 25511

Re: Virtual hosts redirect to /admin

Looks fine ...

:idea: Did you also specify the "NameVirtualHost" directive? Try this:

Code: Select all

# su
# echo "NameVirtualHost *:80">/etc/apache2/conf.d/name-vhosts.conf
#/etc/init.d/apache2 restart
by Gordon
17 Dec 2011, 17:19
Forum: B2 & B3 Support
Topic: Virtual hosts redirect to /admin
Replies: 20
Views: 25511

Re: Virtual hosts redirect to /admin

I hate to state the obvious, but based on what you're telling the vhost is actually not working and you're falling back to the default host.

Are you attempting to create an IP based virtual host (i.e. distinguish between LAN and WAN) or a named virtual host? You're doing http and not https I hope?
by Gordon
17 Dec 2011, 16:21
Forum: B2 & B3 Support
Topic: Virtual hosts redirect to /admin
Replies: 20
Views: 25511

Re: Virtual hosts redirect to /admin

I'm not sure if it makes much sense to create another vhost and then point it to the same webroot as the default site.

That you're still being redirected may be a browser issue - try emptying your cache.
by Gordon
07 Dec 2011, 11:05
Forum: B2 & B3 Support
Topic: Locked out by denyhosts?
Replies: 11
Views: 12091

Re: Locked out by denyhosts?

Ubi wrote:It's difficult enough that a pro like hasn't managed to get it going yet :)
The professional is having some issues finding enough time for everything he wants to do :mrgreen:
by Gordon
07 Dec 2011, 02:39
Forum: B2 & B3 Support
Topic: OpenVPN / PPTP
Replies: 8
Views: 14011

Re: OpenVPN / PPTP

Check out the following page:

http://www.linuxhorizon.ro/iproute2.html

Should give you an idea how to accomplish this.
by Gordon
07 Dec 2011, 02:33
Forum: B2 & B3 Support
Topic: Locked out by denyhosts?
Replies: 11
Views: 12091

Re: Locked out by denyhosts?

that sounds indeed cool, but maybe more for a linux-guru as yourself, but maybe not for the general noob :D :D :D . I use d to like denyhosts as it kept the dictionary attacks out. Then I moved the SSH port and all my troubles went away. Moving the port trumps all. Actually, it's not really that ha...
by Gordon
06 Dec 2011, 02:37
Forum: B2 & B3 Support
Topic: Locked out by denyhosts?
Replies: 11
Views: 12091

Re: Locked out by denyhosts?

why don't you just add an ALLOW rule on top of hosts.deny to whitelist your IP? It's in the manual... Why not just use the firewall? I've actually been thinking of doing something like this myself - not for LAN connections but when I'm someplace else. The challenge in this is that I cannot know bef...
by Gordon
05 Dec 2011, 02:39
Forum: B2 & B3 Support
Topic: Locked out by denyhosts?
Replies: 11
Views: 12091

Re: Locked out by denyhosts?

ListenAddress does not define *from* which IP you can connect but *to* which IP you can connect. What you did is assign an address that is non-local and to which sshd can therefore not bind itself. A possible fix would be to change the IP address of the B3 so that it matches one of the ListenAdress ...
by Gordon
02 Dec 2011, 02:17
Forum: B2 & B3 Support
Topic: [SOLVED] Zafara possible on B3 ?
Replies: 5
Views: 7021

Re: Zafara possible on B3 ?

well, they call themselves "The Best Open Source Email & Collaboration Software". The community versions is on some sort of altered GPL3 license. Anyway: the source is here: http://download.zarafa.com/community/final/ I was not aware of that. We used to do business with that company b...
by Gordon
01 Dec 2011, 11:02
Forum: B2 & B3 Support
Topic: OpenVPN / PPTP
Replies: 8
Views: 14011

Re: OpenVPN / PPTP

Ah, I see. This is about you wanting to route through either a VPN tunnel or straight onto the net on a per service level. In theory this should be possible. Trick is to first be able to identify the TCP/UDP packets and then mark them using iptables' mangle table. Iproute2 can then use the marked pa...