Re: [CentOS-es] Bloquear acceso externo en una interfaz y dejar solo la vpn

2013-09-30 Thread Normando Hall
Hola David. El tema es asi. Tengo una interfaz real eth0 con una IP externa. Luego tengo 2 interfaces virtuales mas, eth0:1 y eth0:2, ambas tambien con otras IP externas. Además, tengo funcionando una VPN sobre eth0:2 (strongswan) con el siguiente esquema site to site: 172.16.x (eth0:2) --- eth0

Re: [CentOS-es] Bloquear acceso externo en una interfaz y dejar solo la vpn

2013-09-30 Thread David González Romero
Bueno entonces lo que te pase va en esta modificación: iptables -A INPUT -i eth0:2 -d 172.16.x.x -s 172.16.x.x -p all -j ACCEPT En la anterior regla le dices que IPtables que todo lo que venga por la interface eth0:2 con destino 172.16.x.x y desde una fuente 172.16.x.x con cualquier protocolo, lo

[CentOS-es] Un de Shell

2013-09-30 Thread David González Romero
Tengo un directorio con una gran cantidad de archivos y quiero mover una selección de ellos que tienen un texto que es común para el grupo que deseo mover. Con egrep 'TEXTO COMUN' logro saber que archivos son, pero no se como hacer el comando mv usando como referencia la salida del comando egrep

Re: [CentOS-es] Un de Shell

2013-09-30 Thread Luis Terrel
Si ya sabes que archivos son, puedes hacer lo siguiente: for mis_archivos in $(ls | egrep TEXTO COMUN) do mv mis_archivos destino done Remplaza tu destino hacia el path adonde quieres mover los archivos. Date: Mon, 30 Sep 2013 12:45:48 -0400 From: dgrved...@gmail.com To:

Re: [CentOS-es] Un de Shell

2013-09-30 Thread David González Romero
Al final hice así #!/bin/sh for tigos in $(egrep 'To: 098' *|cut -d. -f1) do mv tigos /var/spool/sms/tigo done Porque con egrep solamente me daba una linea salida así: nombre.sms: To: 098 Entonces solo solo necesito usar los nombres de los archivos. Segundo problemas En el nombre del archivo

Re: [CentOS-es] Un de Shell

2013-09-30 Thread David González Romero
Solución En el do ... done habia que usar $tigos... Saludos, David El 30 de septiembre de 2013 14:49, David González Romero dgrved...@gmail.com escribió: Al final hice así #!/bin/sh for tigos in $(egrep 'To: 098' *|cut -d. -f1) do mv tigos /var/spool/sms/tigo done Porque con

Re: [CentOS-es] ERROR IPTABLES

2013-09-30 Thread Ignacio Ordeñana
creo que no me explique entiendo lo que hace la regla pero el mensaje de error es el siguiente: iptables:no chain/target/match by that name El 30 de septiembre de 2013 10:31, Ramón Macías Zamora rmac...@rks.ecescribió: el -D FORWARD, indica que está borrando la regla antes existente --

Re: [CentOS-es] ERROR IPTABLES

2013-09-30 Thread Mauricio Tapia
revisa con iptables -L y serciorate que filter exista como nombre El 30 de septiembre de 2013 16:13, Ignacio Ordeñana ifor1...@gmail.comescribió: creo que no me explique entiendo lo que hace la regla pero el mensaje de error es el siguiente: iptables:no chain/target/match by that name

Re: [CentOS-es] Multicast por UDP

2013-09-30 Thread Francesc Guitart
Hola, Entre el host que envía los paquetes UDP y los ordenadores que los reciben, ¿que hay en medio? Lo que quiero decir es que los dispositivos de red (routers y switchs) por los que pasa el trafico UDP deben soportar y tener bien configurado multicast. Verifica que tienes activado al menos

Re: [CentOS] Intel 10G X520-2 and iscsi storage poor performance

2013-09-30 Thread Götz Reinicke - IT Koordinator
Am 27.09.13 17:39, schrieb John Doe: From: Götz Reinicke - IT Koordinator goetz.reini...@filmakademie.de we have a storageserver (Centos 6.4) with a dualport Intel 10G X520-2 Adapter. A QSan P600Q-D316 Storage is configured with 8*SATA Drives raid 5 for test, connected trought a Cisco UCS

Re: [CentOS] Intel 10G X520-2 and iscsi storage poor performance

2013-09-30 Thread Thomas Göttgens
Hi, try installing the tuned package and using tuned-adm. Available performance profiles include: - enterprise-storage - throughput-performance You might get better results with one of these profiles applied. -Ursprüngliche Nachricht- Von: centos-boun...@centos.org

Re: [CentOS] Weird netinstall issue

2013-09-30 Thread Carl T. Miller
Phil Dobbin wrote: The other day I burnt a copy of a CentOS 6.4 64 bit netinstall disc, verified the disc which passed about a third of the way through the install it informed me that there was no CD in the drive refused to carry on. So I burnt another the same thing happened. So using

Re: [CentOS] dmesg and syslog errors in CentOS 6.4 on Dell R720 server

2013-09-30 Thread mark
On 09/28/13 14:39, SilverTip257 wrote: On Fri, Sep 27, 2013 at 8:41 PM, Kaushal Shriyan kaushalshri...@gmail.comwrote: On Thu, Sep 26, 2013 at 8:04 AM, Kaushal Shriyan kaushalshri...@gmail.comwrote: On Tue, Sep 24, 2013 at 8:35 PM, Kaushal Shriyan kaushalshri...@gmail.com wrote:

Re: [CentOS] Weird netinstall issue

2013-09-30 Thread zGreenfelder
On Mon, Sep 30, 2013 at 6:13 AM, Carl T. Miller c...@carltm.com wrote: Phil Dobbin wrote: The other day I burnt a copy of a CentOS 6.4 64 bit netinstall disc, verified the disc which passed about a third of the way through the install it informed me that there was no CD in the drive

Re: [CentOS] dmesg and syslog errors in CentOS 6.4 on Dell R720 server

2013-09-30 Thread SilverTip257
On Mon, Sep 30, 2013 at 7:56 AM, mark m.r...@5-cent.us wrote: On 09/28/13 14:39, SilverTip257 wrote: On Fri, Sep 27, 2013 at 8:41 PM, Kaushal Shriyan kaushalshri...@gmail.comwrote: On Thu, Sep 26, 2013 at 8:04 AM, Kaushal Shriyan kaushalshri...@gmail.comwrote: On Tue, Sep 24, 2013

Re: [CentOS] ghostscript-8.70-14.el5_8.1.x86_64 hylafax+ 5.5.3

2013-09-30 Thread Gregory P. Ennis
Cliff, Thanks for taking the time to offer help, I apologize for not seeing your note a long time ago. Unfortunately, there are many of our clients that prefer fax transmissions over e-mail. The only reason that for this that makes any sense is that a successful fax transmission or an

Re: [CentOS] ghostscript-8.70-14.el5_8.1.x86_64 hylafax+ 5.5.3

2013-09-30 Thread Gregory P. Ennis
On Mon, Aug 5, 2013 at 5:19 PM, Gregory P. Ennis po...@pomec.net wrote: I am a new hylafax+ user and other than the ghostscript problem I am very impressed. Hylafax+ does allow you to control the location of ghostscript so once I get it compiled I should be able to point it to the correct

Re: [CentOS] Weird netinstall issue

2013-09-30 Thread Phil Dobbin
On 30/09/13 13:18, zGreenfelder wrote: On Mon, Sep 30, 2013 at 6:13 AM, Carl T. Miller c...@carltm.com wrote: Phil Dobbin wrote: The other day I burnt a copy of a CentOS 6.4 64 bit netinstall disc, verified the disc which passed about a third of the way through the install it informed me

Re: [CentOS] dmesg and syslog errors in CentOS 6.4 on Dell R720 server

2013-09-30 Thread m . roth
SilverTip257 wrote: On Mon, Sep 30, 2013 at 7:56 AM, mark m.r...@5-cent.us wrote: On 09/28/13 14:39, SilverTip257 wrote: On Fri, Sep 27, 2013 at 8:41 PM, Kaushal Shriyan kaushalshri...@gmail.comwrote: ...snipped... I suspect that the members of the CentOS list have either not

Re: [CentOS] Anyone using CentOS Active Directory like system?

2013-09-30 Thread Rainer Duffner
Am 30.09.2013 um 07:34 schrieb Gordon Messmer gordon.mess...@gmail.com: On 09/29/2013 09:56 PM, John R Pierce wrote: I'd test this over Samba as a AD replacement. but, if your environment includes a lot of windows client systems, and expects to use Active Directory group policies to

Re: [CentOS] Anyone using CentOS Active Directory like system?

2013-09-30 Thread James A. Peltier
- Original Message - | I am the IT Development Specialist for a small community college and | our | CIO has asked me to explore an alternative to Microsoft Active | Directory as | we are separating from our parent university and funding is tight so | we | were looking into CentOS with 389

Re: [CentOS] Anyone using CentOS Active Directory like system?

2013-09-30 Thread Rob Townley
sernet.de/en/samba/ seems to have the most promising SaMBa binaries and make an ISO image to download. Described as http://www.enterprisesamba.com/samba4app/ Setting up a new domain without existing ADS:

[CentOS] New Mirror MO, USA

2013-09-30 Thread compevo communications - Domain Administration
We use CentOS frequently along with many clients so thought it would be a great idea to setup a mirror. http://mirror.compevo.com/centos/ - compevo communications - http://compevo.com The mirror will sync multiple times daily. Thanks to the CentOS team for their contributions and efforts!

Re: [CentOS] Anyone using CentOS Active Directory like system?

2013-09-30 Thread Rob Townley
Sorry, ctrl-enter (send right away) won ctrl-shift-v... i used to love MS ADS, but do not love it much anymore and see that there are other tools for the job. There was not nearly enough documentation on which target machines a particular group policy can apply correctly to which version of

[CentOS] SysRq over usb serial adapters

2013-09-30 Thread Billy Crook
I am having trouble sending sysrq commands over USB serial, and I'm not sure what else to check. I have two identical machines, each with usb-to-serial adapters, joined by a null modem adapter. One runs an agetty, the other minicom. I can log in over the agetty as a user and it works as

[CentOS] CENTOS 5 incoming SFTP

2013-09-30 Thread John McKelvey
Hello, I have a CENTOS 5 box that can reach the internet and can ping to/from all windows system on my home network. The catch is that I can not connect to the box using SSH from any windows machine, though they can easily ping the linux box and vice-versa. Suggestion of a possible solution

Re: [CentOS] CENTOS 5 incoming SFTP

2013-09-30 Thread Barry Brimer
I have a CENTOS 5 box that can reach the internet and can ping to/from all windows system on my home network. The catch is that I can not connect to the box using SSH from any windows machine, though they can easily ping the linux box and vice-versa. Is there a firewall running on the Linux

Re: [CentOS] SysRq over usb serial adapters

2013-09-30 Thread Barry Brimer
I'm using 115200, 8N1, VT102. I can echo m /proc/sysctl-trigger, and dmesg shows that the sysrq was received when initiated via the procfs interface. But not over serial, and that's what I need. I could be wrong .. but you may need to edit your grub config to convince your system that the