Re: Set Up a server using Public IP Addresses on debian

2011-06-12 Thread Christian Simo
On Sat, Jun 11, 2011 at 3:08 PM, Camaleón noela...@gmail.com wrote:

 On Sat, 11 Jun 2011 14:14:31 +0200, Christian Simo wrote:

  Hi all
 
  Sorry to response let!

 Please, keep the replies into the same thread, there is no need to open a
 new thread for every post :-)

 Sorry for that, I deleted by mistake the previous mails.


   I was busy with my ISP:
 
  please see below the NAT configuration for my Cisco Router done by my
  ISP:

 (...)

 Christian, having a computer connected to Internet 24 hours 365 days
 which provides remote services it can be very risky (and not only for you
 or your LAN but the whole of the Internet users) so I think you need
 first to get some of the basics about networking and routing to
 understand what is this all about and what do you need, at least for
 making your first tests.

 Thanks for this resume,
in fact, I set up a network using class A 10.0.0.0:
my LAN gateway is 10.0.0.2
 n1.kom.co.za and ns2.kom.co.za are the hostnames for 10.0.0.80 and
10.0.0.82
this two debian machines are my DNS bind server.

Please below the interfaces files congigurations:


iface eth0 inet static
address 10.0.0.80
netmask 255.255.255.0
network 10.0.0.0
broadcast 10.0.0.255
gateway 10.0.0.2

# dns-* options are implemented by the resolvconf package, if
installed
dns-nameservers 196.28.80.139 196.28.80.140
dns-search ns1.kom.co.za ns2.kom.co.za

iface eth0 inet static
address 10.0.0.82
netmask 255.255.255.0
network 10.0.0.0
broadcast 10.0.0.255
gateway 10.0.0.2
# dns-* options are implemented by the resolvconf package, if
installed
dns-nameservers 196.28.80.139 196.28.80.140
dns-search ns1.kom.co.za ns2.kom.co.za

this below are my hosts files configurations for 10.0.0.80 and 10.0.0.82:

127.0.0.1   localhost
10.0.0.82   ns1.kom.co.za ns1


127.0.0.1   localhost
10.0.0.82   ns2.kom.co.za ns2




 I dunno how can we help you if we don't know what is your network layout,
 what routers/gateways/modems do you have configured at your site and what
 tests are you doing right know.

 The routers is a Cisco provide by my ISP  and I got 4 switch   D-LINK on
the network.

I said before, I planed to have two DNS server one as primary on 10.0.0.80
and another as slave on 10.0.0.82

my router IP is 41.134.19.89, 10.0.0.80 pointing on 41.134.19.90 with port
53 open and 10.0.0.82 pointing on 41.134.19.91 with ports 53 and 80 open.

See below my primary DNS configuration:

*File: /etc/bind/named.conf.local;*

zone kom.co.za IN {
type master;
file /var/cache/bind/master.kom.co.za;
notify yes;
};


zone 0.0.10.in-addr.arpa IN {
type master;
file /var/cache/bind/kom.co.za.inv;
};


*File: /var/cache/bind/master.kom.co.za :*

$ORIGIN kom.co.za.
$TTL 861000
@   IN  SOA ns1.kom.co.za.postmaster.kom.co.za. (
2011061001  ; serial
3600; refresh
900 ; retry
1209600 ; expire
13200)  ; default_TTL

IN  NS  ns1.kom.co.za.
IN  NS  ns2.kom.co.za.

IN  MX  10  mail.kom.co.za.

ns1 IN  A   10.0.0.80
ns2 IN  A   10.0.0.82
www IN  A   10.0.0.81
sql IN  A   10.0.0.81
mailIN  A   10.0.0.84
backup  IN  A   10.0.0.102
ftp IN  CNAME   www
imapIN  CNAME   mail
pop IN  CNAME   mail
pop3IN  CNAME   mail
smtpIN  CNAME   mail
img IN  CNAME   www

*File: /var/cache/bind/kom.co.za.inv*

$ORIGIN 0.0.10.in-addr.arpa.
$TTL 864000
@   IN  SOA ns1.kom.co.za.postmaster.kom.co.za. (
201105311   ; serial
3600; refresh
900 ; retry
1209600 ; expire
43200)  ; default_TTL

IN  NS  ns1.kom.co.za.
IN  NS  ns2.kom.co.za.

10.0.0.80.  IN  PTR ns1.kom.co.za.
10.0.0.82.  IN  PTR ns2.kom.co.za.
10.0.0.101. IN  PTR sql.kom.co.za.
10.0.0.102. IN  PTR backup.kom.co.za.





So please, let's concetrate in one service (dns server or http server or
 whatever you prefer) and now that your ISP has configured the routes to
 point to your local server you can start with your setup. So choose one
 service, configure it and put here any problems you have with that.

 When I tried to update kom.co.za domain from  co.za. administrator domain,
I received this errors:

Syntax/Cross-Checking provided info for Nameserver at 6a: ns1.kom.co.za @
41.134.19.90
IPv4: 41.134.19.90 == 41-134-19-90.dsl.mweb.co.za.
FQDN: ns1.kom.co.za

Re: Set Up a server using Public IP Addresses on debian

2011-06-12 Thread Christian Simo
On Sun, Jun 12, 2011 at 3:10 PM, Camaleón noela...@gmail.com wrote:

 On Sun, 12 Jun 2011 13:17:06 +0200, Christian Simo wrote:

  On Sat, Jun 11, 2011 at 3:08 PM, Camaleón noela...@gmail.com wrote:

 (...)

  I dunno how can we help you if we don't know what is your network
  layout, what routers/gateways/modems do you have configured at your
  site and what tests are you doing right know.
 
  The routers is a Cisco provide by my ISP  and I got 4 switch   D-LINK
  on the network.

 Okay, so the only adsl gateway is the Cisco, that is controlled by your
 ISP.

 Yeah!


  I said before, I planed to have two DNS server one as primary on
  10.0.0.80 and another as slave on 10.0.0.82
 
  my router IP is 41.134.19.89, 10.0.0.80 pointing on 41.134.19.90 with
  port 53 open and 10.0.0.82 pointing on 41.134.19.91 with ports 53 and 80
  open.
 
  See below my primary DNS configuration:

 (...)

  When I tried to update kom.co.za domain from  co.za. administrator
  domain, I received this errors:
 
  Syntax/Cross-Checking provided info for Nameserver at 6a: ns1.kom.co.za
  @ 41.134.19.90
  IPv4: 41.134.19.90 == 41-134-19-90.dsl.mweb.co.za. FQDN: ns1.kom.co.za
  ==
  ERROR: Checking field 6a and running a Reverse check. ns1.kom.co.za
  not found in 41-134-19-90.dsl.mweb.co.za.
 
  ! Whilst checking field 6a on the application form and whilst running a
  Reverse check...
  ! you specified that 41.134.19.90 would map to ns1.kom.co.za, ! but
  DNS returned 41-134-19-90.dsl.mweb.co.za.

 What application is giving you that error?

 There is not application that giving me the problem, it's a *.CO.ZA Domain
registrations  *http://www.coza.net.za

when I tried to update the domain kom.co.za, their (A .CO.ZA Domain
registry) server sent me an Invalid Nameserver errors

Telling that my name server (n1.kom.co.za and n2.kom.co.za) that I indicated
as a Primary and Slave servers FQDN are not pointing on 41.134.19.90 and
41.134.19.91 but pointing on 41-134-19-90.dsl.mweb.co.za and 
41-134-19-91.dsl.mweb.co.za http://41-134-19-90.dsl.mweb.co.za/

I even emailed to my ISP the errors and still waiting for their responses.

what make me so strange is that I never login on the Cisco router to really
see how the configuration looks.

is it something's wrong with my Debian machine configurations?



 It seems like a problem with your assigned IPs and reverve dns resolution
 (rDNS) that points to your domain name.

 Greetings,

 --
 Camaleón


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/pan.2011.06.12.13.10...@gmail.com




Re: Set Up a server using Public IP Addresses on debian

2011-06-12 Thread Christian Simo
On Sun, Jun 12, 2011 at 3:51 PM, Camaleón noela...@gmail.com wrote:

 On Sun, 12 Jun 2011 15:32:09 +0200, Christian Simo wrote:

  On Sun, Jun 12, 2011 at 3:10 PM, Camaleón noela...@gmail.com wrote:

   ! Whilst checking field 6a on the application form and whilst running
   a Reverse check...
   ! you specified that 41.134.19.90 would map to ns1.kom.co.za, !
   but DNS returned 41-134-19-90.dsl.mweb.co.za.
 
  What application is giving you that error?
 
  There is not application that giving me the problem, it's a *.CO.ZA
  Domain registrations  *http://www.coza.net.za

 Uh? You mean the domain name registrar?

 Yeah!


  when I tried to update the domain kom.co.za, their (A .CO.ZA Domain
  registry) server sent me an Invalid Nameserver errors
 
  Telling that my name server (n1.kom.co.za and n2.kom.co.za) that I
  indicated as a Primary and Slave servers FQDN are not pointing on
  41.134.19.90 and 41.134.19.91 but pointing on
  41-134-19-90.dsl.mweb.co.za and  41-134-19-91.dsl.mweb.co.za
  http://41-134-19-90.dsl.mweb.co.za/
 
  I even emailed to my ISP the errors and still waiting for their
  responses.

 I'm afraid you will have to wait for their response. Or forget about this
 setup and try with another one (e.g., use an external free DNS service to
 resolve your domain, like DynDNS or such).

  On Monday, If not yet response, I much resend the mails to them, Before
decide to switch to the external DNS services.


 If I correctly read the error message, your registrar needs that you
 domain name (n1.kom.co.za) is properly configured by the owner of the
 IPs, that is, your ISP.

  what make me so strange is that I never login on the Cisco router to
  really see how the configuration looks.

 That's not the usual setup in many countries and having the control of
 your router is very useful as you don't need to wait a response from your
 ISP for every change you want to do.

 I don't know why there are doing like that,  I has been waiting for their
response since yesterday,
the thing that I know now is that the IPs 41.134.19.90 and 41.134.19.91 are
pointing to their  hostnames

 is it something's wrong with my Debian machine configurations?

 Dunno, but one thing for sure: this is a complex setup.

I know!



Greetings,

 --
 Camaleón


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/pan.2011.06.12.13.51...@gmail.com




Set Up a server using Public IP Addresses on debian

2011-06-11 Thread Christian Simo
Hi all

Sorry to response let!

I was busy with my ISP:

please see below the NAT configuration for my Cisco Router done by my ISP:

ip route 196.22.173.9 255.255.255.255 Dialer0
!
no ip http server
no ip http secure-server
ip dns server
!
ip nat inside source list 100 interface Loopback0 overload
ip nat inside source static tcp 10.0.0.81 21 41.134.19.90 21 extendable
ip nat inside source static tcp 10.0.0.81 22 41.134.19.90 22 extendable
ip nat inside source static tcp 10.0.0.84 25 41.134.19.90 25 extendable
ip nat inside source static tcp 10.0.0.80 53 41.134.19.90 53 extendable
ip nat inside source static tcp 10.0.0.81 80 41.134.19.90 80 extendable
ip nat inside source static tcp 10.0.0.84 110 41.134.19.90 110 extendable
ip nat inside source static tcp 10.0.0.84 143 41.134.19.90 143 extendable
ip nat inside source static tcp 10.0.0.84 220 41.134.19.90 220 extendable
ip nat inside source static tcp 10.0.0.81 389 41.134.19.90 389 extendable
ip nat inside source static tcp 10.0.0.81 443 41.134.19.90 443 extendable
ip nat inside source static tcp 10.0.0.81 636 41.134.19.90 636 extendable
ip nat inside source static tcp 10.0.0.81 990 41.134.19.90 990 extendable
ip nat inside source static tcp 10.0.0.84 993 41.134.19.90 993 extendable
ip nat inside source static tcp 10.0.0.84 995 41.134.19.90 995 extendable
ip nat inside source static tcp 10.0.0.84 3306 41.134.19.90 3306 extendable
ip nat inside source static tcp 10.0.0.81 5432 41.134.19.90 5432 extendable
ip nat inside source static tcp 10.0.0.82 53 41.134.19.91 53 extendable
ip nat inside source static tcp 10.0.0.82 80 41.134.19.91 80 extendable
!


Set Up a server using Public IP Addresses on debian

2011-06-11 Thread Christian Simo
The problems are not yet solved but I can see that I'm on my way!
I never point a local debian machine on Internet that is why I'm getting
confuse,
Another issue is the Cisco router that I can't have access! so I discovered
problems when I try to implement somethings

I can now ping 41.134.19.90 and 41.134.19.91 from my LAN.

It's like the above IPs are pointing on 41-134-19-90.dsl.mweb.co.za and
41-134-19-91.dsl.mweb.co.za

but I request to my ISP to changed them to ns1.kom.co.za and
ns2.kom.co.zaso that I can have my own DNS server


Re: Set Up a server using Public IP Addresses on debian

2011-06-09 Thread Christian Simo
Good Morning all
eth0 it's not working so I'm using eth1!

I asked to my ISP to open all ports at the moment!

I also sent them a LAN IPs from 10.0.0.80 to 10.0.0.84 so that they can NAT
to my public IPs 41.134.19.90 to 41.134.19.94:
10.0.0.80  41.134.19.90
10.0.0.81  41.134.19.91
10.0.0.82  41.134.19.92
10.0.0.83  41.134.19.93
10.0.0.84  41.134.19.94

With this new configuration, I'm confusing if am gonna plug my machines
Debian directly to the Cisco router or just on my LAN?

since 10.0.0.2 was NAT to 41.134.19.89, Can I have a computer on my LAN with
that IP, because before it was my default gateway my billion router?





On Wed, Jun 8, 2011 at 3:34 PM, nhadie ramos nha...@gmail.com wrote:

 i would suggest you troubleshoot your network first. if you have a
 laptop/pc, configure the IP to:

IP Address 41.134.19.90
Subnet Mask 255.255.255.248
Default Gateway  41.134.19.89

 then connect the laptop/pc directly to the router and ping  41.134.19.89
 if  41.134.19.89 responds, try to ping an outside IP. if it does not work
 then
 you have to verify settings with your ISP.

 if all is ok plug your debian machine directly to the router. since you
 mentioned you
 assigned eth1 i am assuming you have 2 NICs. once you connect the server
 you need to
 check which eth has a link using mii-tool or ethtool. make sure eth1 has
 the link as you have
 configured the IP to eth1, once you have the link ping the gateway again
 and it should work.

 basically if the laptop/pc works but your debian does not, you are doing
 something wrong
 on your server. i'm thinking you are wrongly identifying which is eth0 and
 which is eth1.

 Hope this helps.


 On Wed, Jun 8, 2011 at 9:19 PM, Christian Simo csim...@gmail.com wrote:

 I don't have access to my Cisco router, only my ISP.
 When I ping for e.g 41.134.19.90 host, the destination is unreachable.

 I already contact them to configure the router from their are side

 On Wed, Jun 8, 2011 at 7:26 AM, kuLa deb...@kulisz.net wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 On 07/06/11 19:28, Christian Simo wrote:
  Hi All

 Hi

  Please I got an internet with 6 fixed IP addresses, one on my cisco
  router and another 5 that I want to use them as  IP addresses for my
  servers on my LAN so that those servers can be accessible on internet
  side.
 
  Want I tried to configure, it don't connect to internet!
 
  Please if someone can have an ideas, I'll really appreciate

 I read all posts in this thread and saw that nobody actually asked one
 very important question:
 What routing setup you've got on the router/gateway.

 in your case I would use following setup

 - --router (with pool of your ext. IP's and port/IP
 forwarding)--servers
 (in LAN with IP's from one of restricted ranges ex 192.168.0.0/24)

 so traffic into you web server could looks like

 - --41.134.19.89:80--192.168.0.23:80

 it just depends from you what rules you'll going to set up

 - --

 |_|0|_|  |
 |_|_|0| Heghlu'Meh QaQ jajVam  |
 |0|0|0|  kuLa -  |

 gpg --keyserver pgp.mit.edu --recv-keys 0xC100B4CA
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.10 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

 iQEcBAEBAgAGBQJN7wfqAAoJEOqHloDBALTKb0UH/jTKBZ+63Y1d9bRsMG3EQO5L
 gXfeb617X65iHBsafEGTumuHe6aRDncTzZBUCTtxxIhOOYbhWUF4xoSx+wktUAPh
 kVC2ZNZPMwq2hXPTYetYaZar5u/Vgu2K/jy2EraP2XsCThGiT4Io9+3pZX7AJujE
 Gf1PJxWXj66Qcv/WtCyDTZ8fnmaKI9Owfa4zThn38rg4IxP9X9hmAbxMUQyO/Ib9
 Piku5YOiTSr33zqmlrc92OcPLI7OW+qZW1i3sWQwTqEtH81pDUAg5UfILXt2lk+r
 Hyj6K8SzJPeZ1Iiuza5WxvmKwyyVQyyYq13uNt2q1DNVbgBsQcORMNzZ6VH1LuQ=
 =mzlK
 -END PGP SIGNATURE-


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/4def07ea.10...@kulisz.net






Re: Set Up a server using Public IP Addresses on debian

2011-06-08 Thread Christian Simo
I don't have access to my Cisco router, only my ISP.
When I ping for e.g 41.134.19.90 host, the destination is unreachable.

I already contact them to configure the router from their are side

On Wed, Jun 8, 2011 at 7:26 AM, kuLa deb...@kulisz.net wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 On 07/06/11 19:28, Christian Simo wrote:
  Hi All

 Hi

  Please I got an internet with 6 fixed IP addresses, one on my cisco
  router and another 5 that I want to use them as  IP addresses for my
  servers on my LAN so that those servers can be accessible on internet
  side.
 
  Want I tried to configure, it don't connect to internet!
 
  Please if someone can have an ideas, I'll really appreciate

 I read all posts in this thread and saw that nobody actually asked one
 very important question:
 What routing setup you've got on the router/gateway.

 in your case I would use following setup

 - --router (with pool of your ext. IP's and port/IP forwarding)--servers
 (in LAN with IP's from one of restricted ranges ex 192.168.0.0/24)

 so traffic into you web server could looks like

 - --41.134.19.89:80--192.168.0.23:80

 it just depends from you what rules you'll going to set up

 - --

 |_|0|_|  |
 |_|_|0| Heghlu'Meh QaQ jajVam  |
 |0|0|0|  kuLa -  |

 gpg --keyserver pgp.mit.edu --recv-keys 0xC100B4CA
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.10 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

 iQEcBAEBAgAGBQJN7wfqAAoJEOqHloDBALTKb0UH/jTKBZ+63Y1d9bRsMG3EQO5L
 gXfeb617X65iHBsafEGTumuHe6aRDncTzZBUCTtxxIhOOYbhWUF4xoSx+wktUAPh
 kVC2ZNZPMwq2hXPTYetYaZar5u/Vgu2K/jy2EraP2XsCThGiT4Io9+3pZX7AJujE
 Gf1PJxWXj66Qcv/WtCyDTZ8fnmaKI9Owfa4zThn38rg4IxP9X9hmAbxMUQyO/Ib9
 Piku5YOiTSr33zqmlrc92OcPLI7OW+qZW1i3sWQwTqEtH81pDUAg5UfILXt2lk+r
 Hyj6K8SzJPeZ1Iiuza5WxvmKwyyVQyyYq13uNt2q1DNVbgBsQcORMNzZ6VH1LuQ=
 =mzlK
 -END PGP SIGNATURE-


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/4def07ea.10...@kulisz.net




Set Up a server using Public IP Addresses on debian

2011-06-07 Thread Christian Simo
Hi All

Please I got an internet with 6 fixed IP addresses, one on my cisco
router and another 5 that I want to use them as  IP addresses for my
servers on my LAN so that those servers can be accessible on internet
side.

Want I tried to configure, it don't connect to internet!

Please if someone can have an ideas, I'll really appreciate

Thanks a lot

Christian


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/banlktin7_znhg6vgffw8sm015usapnn...@mail.gmail.com



Re: Set Up a server using Public IP Addresses on debian

2011-06-07 Thread Christian Simo
Thank you for your response,
this is my /etc/network/interfaces
iface eth1 inet static
address 41.134.19.90
netmask 255.255.255.248
broadcast 41.134.19.95
gateway 10.0.0.2

the above IP addresses are set up on one of my computer on my LAN

The IP address 41.134.19.89 is in my cisco router




On 6/7/11, Nuno Magalhães nunomagalh...@eu.ipp.pt wrote:
 What did you try?
 And where are those ip adresses connected to? The router? Individual
 servers? A single link?


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive:
 http://lists.debian.org/BANLkTimkLk=jjzi9xdsw_jnyhn1nh2n...@mail.gmail.com




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/banlktimew6dk1-prsuk+4wpxszyktig...@mail.gmail.com



Re: Set Up a server using Public IP Addresses on debian

2011-06-07 Thread Christian Simo
I wanna run DNS and Web Servers
my ISP give to me a following IP:

Router IP 41.134.19.89
Network Mask 41.134.19.88 255.255.255.248
Broadcast Address 41.134.19.95
Network Address 41.134.19.88
WAN IP Range 41.134.19.88/29

and another public IP as follow allocated to me :
41.134.19.90
41.134.19.91
41.134.19.92
41.134.19.93
41.134.19.94

It is my first time to use a public IP on the private network



On 6/7/11, Camaleón noela...@gmail.com wrote:
 On Tue, 07 Jun 2011 20:28:23 +0200, Christian Simo wrote:

 Please I got an internet with 6 fixed IP addresses, one on my cisco
 router and another 5 that I want to use them as  IP addresses for my
 servers on my LAN so that those servers can be accessible on internet
 side.

 Want I tried to configure, it don't connect to internet!

 Those configurations tend to be very ISP specific.

 We also get some static IPs from ourISP and have configured it to be
 public and accesable from Internet using the FTTH router capabilities
 (nated routing) but YMMV *a lot*.

 The more details you provide about your devices and setup (what kind of
 services do you want to be routed to your local lan, e.g., a web server,
 e-mail server...?), the better.

 Greetings,

 --
 Camaleón


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/pan.2011.06.07.18.46...@gmail.com




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/banlktikd3m5htwz1f0_zeoce9yp7bzk...@mail.gmail.com



Re: Set Up a server using Public IP Addresses on debian

2011-06-07 Thread Christian Simo
On 6/7/11, Nuno Magalhães nunomagalh...@eu.ipp.pt wrote:
 2011/6/7 Christian Simo csim...@gmail.com:
 iface eth1 inet static
address 41.134.19.90
netmask 255.255.255.248
broadcast 41.134.19.95
gateway 10.0.0.2

 the above IP addresses are set up on one of my computer on my LAN

 Isn't this a node in a LAN, with a public IP address? You either have
 very weird router configurations or that node is receiving nothing.
 The public IPs should be in devices facing the internet, not in LAN
 devices

So It's meaning that I should run for example my DNS server  on the LAN?
What about those another IPs public  assigned to me?

It make me confuse a lot!
 --
 Mars 2 Stay!
 http://xkcd.com/801/
 /etc


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive:
 http://lists.debian.org/banlktikeocp8k4+ycgpuou8pt3n7_s7...@mail.gmail.com




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/banlktindum_lgocng1gj-gmn35cezfd...@mail.gmail.com



Re: Set Up a server using Public IP Addresses on debian

2011-06-07 Thread Christian Simo
On 6/7/11, William Hopkins we.hopk...@gmail.com wrote:
 On 06/07/11 at 08:39pm, Christian Simo wrote:
 Thank you for your response,
 this is my /etc/network/interfaces
 iface eth1 inet static
 address 41.134.19.90
 netmask 255.255.255.248
 broadcast 41.134.19.95
 gateway 10.0.0.2

 Change 'gateway' to be your router IP. Let us know what happens.

after changed gateway to router IP (41.134.19.89), the command
ifconfig it showing eth1 now but; ping doesn’t work


 --
 Liam



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/BANLkTi=yNTg_62=xyvik8kwn9ut3hb+...@mail.gmail.com



Re: Set Up a server using Public IP Addresses on debian

2011-06-07 Thread Christian Simo
On 6/7/11, Camaleón noela...@gmail.com wrote:
 On Tue, 07 Jun 2011 20:58:23 +0200, Christian Simo wrote:

 On 6/7/11, Camaleón noela...@gmail.com wrote:

 (...)

 The more details you provide about your devices and setup (what kind of
 services do you want to be routed to your local lan, e.g., a web
 server, e-mail server...?), the better.

 I wanna run DNS and Web Servers
 my ISP give to me a following IP:

 Router IP 41.134.19.89
 Network Mask 41.134.19.88 255.255.255.248
 Broadcast Address 41.134.19.95
 Network Address 41.134.19.88
 WAN IP Range 41.134.19.88/29

 and another public IP as follow allocated to me :
 41.134.19.90
 41.134.19.91
 41.134.19.92
 41.134.19.93
 41.134.19.94

 Those IPs seem to be from Mweb ISP. Do you have this plan with a Cisco
 router?

Yeah! there are from Mweb ISP. It is a 4Mb speed with Cisco router.

there was given me details part by part I mean after many upset mail
send to them.


 http://www.mweb.co.za/productspricing/Portals/19/Pdf/ADSL%20Uncapped30052011.pdf

 It is my first time to use a public IP on the private network

 I would first ask your provider to check if it is possible to have the
 configuration you want with the service they provide. You have to be sure
 those IPs are properly routed to your gateway facility (your modem/
 router) with no restrictions (I mean, that all ports are unfiltered/
 opened and the gateway facility is completely manegeable by you, not your
 ISP).

Alright! before send them a mail, i want to be sure that the
configuration that I was doing are correct?  Because really I'm
confusing now!

 Greetings,

 --
 Camaleón


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/pan.2011.06.07.19.17...@gmail.com




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/BANLkTiknPBWCe=vtzxhpmmruj0iqaps...@mail.gmail.com



Setting Access Control for Printers and browser

2010-12-30 Thread Christian Simo
Hi All

Merry New Year!
Please I'm trying to find the software that I can able to set up a Access
Control for the printer and browser.

Thank you in advance


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlkti=2mdnnzfjmo+vqckrp0d9muantew14_fpss...@mail.gmail.com



Re: Setting Access Control for Printers and browser

2010-12-30 Thread Christian Simo
On Thu, Dec 30, 2010 at 2:19 AM, Camaleón noela...@gmail.com wrote:

 On Thu, 30 Dec 2010 11:18:53 +0200, Eric KOM wrote:

  Hi All
  Merry New Year!

 Same to you :-)

  Please I'm trying to find the software that I can able to set up a
  Access Control for the printer and browser.

 Can you expand the information? The more details you provide the better
 so people can have an idea of your requirements.

 Thanks a lot.
I want  to set up the authentication system, so user can login before use a
printer or the browser for internet.
It's can be also be able to know who was printing?


 Are you looking for a way to limit your users to your network resources -
 like printing facilities or network browsing- or you need something


Yeah, I'm looking for something to limit my users to the network resources
(printing and browsing)

else... what kind of network have you setup (a mix of windows-linux, just
 linux boxes...)?

 Is a VPN set up with the class C. using Windows and Debian as an OS, and
the router DSL

Thank you in advance


 Greetings,

 --
 Camaleón


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/pan.2010.12.30.10.19...@gmail.com




Re: How can I emulate Debian for PowerPC on Intel processor?

2010-07-31 Thread Christian Simo
Alright!

Thank you for your help!

Cheers

On Fri, Jul 30, 2010 at 12:19 PM, Miles Fidelman mfidel...@meetinghouse.net
 wrote:

 Christian Simo wrote:

  I currently virtualize with vmware,
  Please how can I  run Debian for PPC on Intel or How can I emulate Intel
 to
  support PPC OS

 and then,

  I got two Unix OS: Debian for PPC and AIX IBM for PPC.

 My computer CPU is a Intel with Host OS Windows XP.

 So, I don't know how to emulate this CPU to run these OS.

  This may be a silly question, but WHY are you trying to do this?  AIX
 only runs on PPC (unless you're running AIX v1 or v2) but Debian certainly
 runs on Intel.  It might be simpler to build a new VM based on Debian for
 Intel - it would certainly perform a lot better than emulating a PPC.

 Now, if you were asking about emulating PPC so you could run AIX under
 VMware, you might start by looking here:

 http://www.ibm.com/developerworks/library/pa-emulation.html?ca=dgr-lnxw07EmulatePow

 Miles Fidelman

 --
 In theory, there is no difference between theory and practice.
 Infnord  practice, there is.    Yogi Berra



 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a
 subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
 Archive: http://lists.debian.org/4c5325af.10...@meetinghouse.net




How can I emulate Debian for PowerPC on Intel processor?

2010-07-30 Thread Christian Simo
Dear Team!

I currently virtualize with vmware,
Please how can I  run Debian for PPC on Intel or How can I emulate Intel to
support PPC OS

Thanks in advance


Re: How can I emulate Debian for PowerPC on Intel processor?

2010-07-30 Thread Christian Simo
Thank you for your response!

I got two Unix OS: Debian for PPC and AIX IBM for PPC.

My computer CPU is a Intel with Host OS Windows XP.

So, I don't know how to emulate this CPU to run these OS.

I'm new on PPC precesssor.

Thank you in advance!

On Fri, Jul 30, 2010 at 4:24 AM, Dirk Neumann neu...@yahoo.de wrote:

 On Fri, 30 Jul 2010 03:56:32 -0700
 Christian Simo csim...@gmail.com wrote:

  Dear Team!
 
  I currently virtualize with vmware,
  Please how can I  run Debian for PPC on Intel or How can I emulate Intel
 to
  support PPC OS

 A first thought:
 qemu (contains qemu-system-ppc).

 Dirk.


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/20100730132447.39d6c5bd.neu...@yahoo.de




Re: Problem with me Modem Huawei on Debian Lenny

2010-04-26 Thread Christian Simo
Hi

Thank you for your response.
before try all this solution.
Please found attach all following command shell:

Script started on Sun 25 Apr 2010 23:25:36 SAST
gaelle:/media/TUX-FOR-KOM# lsusb
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 003: ID 1267:0103 Logic3 / SpectraVideo plc G-720 Keyboard
Bus 002 Device 002: ID 045e:001e Microsoft Corp. IntelliMouse Explorer
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 005: ID 12d1:1446 Huawei Technologies Co., Ltd. E1552
(HSPA modem)
Bus 001 Device 003: ID 058f:6387 Alcor Micro Corp. Transcend JetFlash
Flash Drive
Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
gaelle:/media/TUX-FOR-KOM# exit
exit

Script done on Sun 25 Apr 2010 23:25:49 SAST


Script started on Mon 26 Apr 2010 00:04:25 SAST
gaelle:/media/usb0# wvdial
-- WvDial: Internet dialer version 1.60
-- Cannot open /dev/ttyUSB0: No such file or directory
-- Cannot open /dev/ttyUSB0: No such file or directory
-- Cannot open /dev/ttyUSB0: No such file or directory
gaelle:/media/usb0# exit
exit

Script done on Mon 26 Apr 2010 00:04:32 SAST

Script started on Mon 26 Apr 2010 00:02:58 SAST
gaelle:/media/usb0# wvdialconf
Editing `/etc/wvdial.conf'.

Scanning your serial ports for a modem.

ttyS0*1: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud
ttyS0*1: ATQ0 V1 E1 -- failed with 9600 baud, next try: 115200 baud
ttyS0*1: ATQ0 V1 E1 -- and failed too at 115200, giving up.
Modem Port Scan*1: S1   S2   S3


Sorry, no modem was detected!  Is it in use by another program?
Did you configure it properly with setserial?

Please read the FAQ at http://open.nit.ca/wiki/?WvDial

If you still have problems, send mail to wvdial-l...@lists.nit.ca.
gaelle:/media/usb0# exit
exit

Script done on Mon 26 Apr 2010 00:03:11 SAST





On 4/25/10, Dale quail.li...@gmail.com wrote:
 On 25 April 2010 04:41, Danny dannydeb...@gmail.com wrote:
 Hi Christian,

 It looks like Vista and Windows 7 people are experiencing the same problem
 as
 you are. If you go to the www.huawei.com forum you will find a bunch of
 non
 linux people have more or less the same problem with communicating with
 this
 modem.

 Just a stupid question, can Debian see this modem?
 Do the following for a start just to see if Debian can see it :
 dmesg | more | grep --color -A1 'dev'

 It is a simple command but at least you will see if it is recognised

 Danny

 On Apr 23 10, Umarzuki Mochlis :
 To: Christian Simo csim...@gmail.com
 Date: Fri, 23 Apr 2010 23:11:41 +0800
 From: Umarzuki Mochlis umarz...@gmail.com
 Subject: Re: Problem with me Modem Huawei on Debian Lenny
 X-Loop: debian-user@lists.debian.org

 i had done that once and documented it
 at http://umarzuki.org/blogku/?p=174

 P/S: use google translate to translate from Malay to English

 On Fri, Apr 23, 2010 at 11:06 PM, Christian Simo csim...@gmail.com
 wrote:

     Hi Dear Team

     Please, I am new on Debian, so I try to connect my Modem Huawei E1752
 on
     Debian Lenny.
     On Suse, I do it easy

     Thanks for your response.

     Christian


 Hi,

 I have the Huawei E1762 usb dongle running under Lenny and Squeeze
 using pppd as were I live I have no access to dsl or cable.

 With Lenny you need to install the the kernel 2.6.30 from Debian
 backports[1] first, as the 2.6.28 kernels onwards will flip flop the
 device for you. At the moment it maybe just being picked up as a mass
 storage device and not a modem if you still using the 2.6.26 kernel.
 And if you want to stay with the 2.6.26 kernel you will have to
 install usb-modeswitch[3].

 Setting up wvdial this might help you[2].


 Regards
 Dale

 [1] http://backports.org/dokuwiki/doku.php
 [2] http://quail.southernvaleslug.org/webblog/archives/136
 [3] http://www.draisberghof.de/usb_modeswitch/
 --
 [WWW] http://quail.southernvaleslug.org/
 The significant problems we face cannot be solved at the same level
 of thinking we were at when we created them - Albert Einstein


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive:
 http://lists.debian.org/x2g9b3004971004241956kdd1e6ab5j6bc962f52f9dd...@mail.gmail.com




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/g2pc364d9921004260100pa2672f76vc4b7e23a27400...@mail.gmail.com



Re: Problem with me Modem Huawei on Debian Lenny

2010-04-24 Thread Christian Simo
Hi

Please, I  still trying to configure my modem.

the command wvdialconf can't detect my modem, i don't know if is need
some package?

thanks

On 4/23/10, Umarzuki Mochlis umarz...@gmail.com wrote:
 i had done that once and documented it at http://umarzuki.org/blogku/?p=174

 P/S: use google translate to translate from Malay to English
 http://umarzuki.org/blogku/?p=174
 On Fri, Apr 23, 2010 at 11:06 PM, Christian Simo csim...@gmail.com wrote:

 Hi Dear Team

 Please, I am new on Debian, so I try to connect my Modem Huawei E1752 on
 Debian Lenny.
 On Suse, I do it easy

 Thanks for your response.

 Christian




 --
 Regards,

 Umarzuki Mochlis
 http://debmal.my



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/q2sc364d9921004240339qa36b7445ye1c370dfb6c6a...@mail.gmail.com



Re: Problem with me Modem Huawei on Debian Lenny

2010-04-24 Thread Christian Simo
the problem is, nm-applet or wvdialconf don't detect my modem.
so i can setting it.


On 4/24/10, Umarzuki Mochlis umarz...@gmail.com wrote:
 if my memory serves me right, and if you insisted on using nm-applet,
 install network manager from squeeze then set the configuration of
 your broadband connection accordingly. Refer your ISP manual.

 On 4/24/10, Christian Simo csim...@gmail.com wrote:
 Hi

 Please, I  still trying to configure my modem.

 the command wvdialconf can't detect my modem, i don't know if is need
 some package?

 thanks

 On 4/23/10, Umarzuki Mochlis umarz...@gmail.com wrote:
 i had done that once and documented it at
 http://umarzuki.org/blogku/?p=174

 P/S: use google translate to translate from Malay to English
 http://umarzuki.org/blogku/?p=174
 On Fri, Apr 23, 2010 at 11:06 PM, Christian Simo csim...@gmail.com
 wrote:

 Hi Dear Team

 Please, I am new on Debian, so I try to connect my Modem Huawei E1752 on
 Debian Lenny.
 On Suse, I do it easy

 Thanks for your response.

 Christian




 --
 Regards,

 Umarzuki Mochlis
 http://debmal.my




 --
 Regards,

 Umarzuki Mochlis
 http://debmal.my



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/l2oc364d9921004240428i9b97d329id4fb98b8b4967...@mail.gmail.com



Re: Problem with me Modem Huawei on Debian Lenny

2010-04-24 Thread Christian Simo
the problem is, nm-applet or wvdialconf don't detect my modem.
so i can't setting it.

On 4/24/10, Christian Simo csim...@gmail.com wrote:
 the problem is, nm-applet or wvdialconf don't detect my modem.
 so i can setting it.


 On 4/24/10, Umarzuki Mochlis umarz...@gmail.com wrote:
 if my memory serves me right, and if you insisted on using nm-applet,
 install network manager from squeeze then set the configuration of
 your broadband connection accordingly. Refer your ISP manual.

 On 4/24/10, Christian Simo csim...@gmail.com wrote:
 Hi

 Please, I  still trying to configure my modem.

 the command wvdialconf can't detect my modem, i don't know if is need
 some package?

 thanks

 On 4/23/10, Umarzuki Mochlis umarz...@gmail.com wrote:
 i had done that once and documented it at
 http://umarzuki.org/blogku/?p=174

 P/S: use google translate to translate from Malay to English
 http://umarzuki.org/blogku/?p=174
 On Fri, Apr 23, 2010 at 11:06 PM, Christian Simo csim...@gmail.com
 wrote:

 Hi Dear Team

 Please, I am new on Debian, so I try to connect my Modem Huawei E1752
 on
 Debian Lenny.
 On Suse, I do it easy

 Thanks for your response.

 Christian




 --
 Regards,

 Umarzuki Mochlis
 http://debmal.my




 --
 Regards,

 Umarzuki Mochlis
 http://debmal.my




-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/s2sc364d9921004240429w459eab59g9410a84750f0d...@mail.gmail.com



Problem with me Modem Huawei on Debian Lenny

2010-04-23 Thread Christian Simo
Hi Dear Team

Please, I am new on Debian, so I try to connect my Modem Huawei E1752 on
Debian Lenny.
On Suse, I do it easy

Thanks for your response.

Christian


Re: Problem with me Modem Huawei on Debian Lenny

2010-04-23 Thread Christian Simo
Thanks for your response.

Please I can found the IDproduct on my device?

Cheers

On Fri, Apr 23, 2010 at 4:11 PM, Umarzuki Mochlis umarz...@gmail.comwrote:

 i had done that once and documented it at
 http://umarzuki.org/blogku/?p=174

 P/S: use google translate to translate from Malay to English
  http://umarzuki.org/blogku/?p=174
 On Fri, Apr 23, 2010 at 11:06 PM, Christian Simo csim...@gmail.comwrote:

 Hi Dear Team

 Please, I am new on Debian, so I try to connect my Modem Huawei E1752 on
 Debian Lenny.
 On Suse, I do it easy

 Thanks for your response.

 Christian




 --
 Regards,

 Umarzuki Mochlis
 http://debmal.my