EXPECT | Shutdown MITEL by Serial.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting EXPECT | Shutdown MITEL by Serial.
# 1  
Old 05-23-2016
EXPECT | Shutdown MITEL by Serial.

Hi everybody,

I'm from Spain so excuse my english.


I'm Trying to Shutdown the Mitel 3300 CXI by serial port.

I'm trying to do this with the EXPECT software.

The problem is:

The connection is done.
The "shutdown" is done BUT the Mitel auto-boot if the script does not type "<space><space><space>" to keep the Mitel powered off.

Image

I wrote the next script, of course I tried a lot of variants but I can't send the characters " " (space x3).

#!/usr/bin/expect
spawn screen dev/ttyUSB0
send "appShutdown"
expect "countdown starts..."
send " " (3 spaces but the forum only display 1)
interact


If I can share something more, tell me. Thanks.

Is too important for me...

Thanks for read.

Regards.

Last edited by Jonsaldana; 05-23-2016 at 12:11 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Expect script returning string following a found expect.

I'm fairly new to scripting so this might not be possible. I am using Expect with Cisco switches and need to capture the string after finding the expect request. For example, when I issue "show version" on a Nexus switch, I'm looking to capture the current firmware version: #show version ... (0 Replies)
Discussion started by: IBGaryA
0 Replies

2. Programming

Calling expect script inside another expect

Hi, Am very new to expect scripting.. Can You please suggest me how to call an expect script inside another expect script.. I tried with spawn /usr/bin/ksh send "expect main.exp\r" expect $root_prompt and spawn /usr/bin/ksh send "main.exp\r" expect $root_prompt Both... (1 Reply)
Discussion started by: Priya Amaresh
1 Replies

3. Linux

Mitel Standard Linux Installation Problems

I didn't know what sub category to put this under, so I just figured I'd throw it in the main area. I've recently acquired an HP ProLiant120 G6 and am trying to install Mitel's version of Linux onto it. I boot from the cd, and can make it as far as selecting what type of keyboard I have. The... (5 Replies)
Discussion started by: madeang
5 Replies

4. Shell Programming and Scripting

Expect - Comparison of expect value and loop selection

Hello All, I am trying to automate an installation process using expect and sh script. My problem is that during the installation process the expected value can change according to the situation. For Example if this is a first time installation then at step 3 I'll get "Do you want to accept... (0 Replies)
Discussion started by: alokrm
0 Replies

5. UNIX for Dummies Questions & Answers

Script to force Oracle database shutdown when shutdown immediate does not work

I have Oracle 9i R2 on AIX 5.2. My Database is running in shared server mode (MTS). Sometimes when I shutdown the database it shutsdown cleanly in 4-5 mints and sometimes it takes good 15-20 minutes and then I get some ora-600 errors and only way to shutdown is by opening another session and... (7 Replies)
Discussion started by: aixhp
7 Replies

6. Ubuntu

Ubuntu 9.04 Serial application to telnet to serial device

Hello! I am working on an application which reads environmental instruments which have serial ports. The application requires a serial port to be present to talk to the device (i.e. /dev/ttyS0 ). In some instances the environmental devices will be 100's of yards away from the computer, so a... (5 Replies)
Discussion started by: mvona
5 Replies

7. Shell Programming and Scripting

Need help with Expect script for Cisco IPS Sensors, Expect sleep and quoting

This Expect script provides expect with a list of IP addresses to Cisco IPS sensors and commands to configure Cisco IPS sensors. The user, password, IP addresses, prompt regex, etc. have been anonymized. In general this script will log into the sensors and send commands successfully but there are... (1 Reply)
Discussion started by: genewolfe
1 Replies

8. Shell Programming and Scripting

Expect Issue Serial Forground Execution vs Concurrent Background Execution

I have an expect script that interrogates several hundred unix servers for both access and directories therein using "ssh user@host ls -l /path". The combination of host/path are unique but the host may be interrogated multiple times if there are multiple paths to test. The expect script is run... (2 Replies)
Discussion started by: twk
2 Replies

9. Shell Programming and Scripting

strange expect script behavior, or am i misunderstanding expect scripting?

Hello to all...this is my first post (so please go easy). :) I feel pretty solid at expect scripting, but I'm running into an issue that I'm not able to wrap my head around. I wrote a script that is a little advanced for logging into a remote Linux machine and changing text in a file using sed.... (2 Replies)
Discussion started by: v1k0d3n
2 Replies

10. Shell Programming and Scripting

Expect and auto expect command

I need to run a remote application(GUI) in a client.i.e on running a script in the client machine i should get the GUI application which is running in the server by providing password through the script.Will expect or autoexpect command suit for this scenario? could anyone help me by posting some... (0 Replies)
Discussion started by: arun_v
0 Replies
Login or Register to Ask a Question
PGPOOL(8)						      System Manager's Manual							 PGPOOL(8)

NAME
pgpool - PostgreSQL connection pool daemon SYNOPSIS
pgpool [ -c] [ -f config_file ] [ -F pcp_config_file ] [ -a hba_file ] [ -n ] [ -d ] pgpool [ -f config_file ] [ -F pcp_config_file ] [ -a hba_file ] [ -m {s[mart]|f[ast]|i[mmediate]} ] stop pgpool [ -f config_file ] [ -F pcp_config_file ] [ -a hba_file ] reload DESCRIPTION
pgpool is a connection pool server for PostgreSQL. pgpool runs between PostgreSQL's client and server. Any PostgreSQL client can connect to pgpool as if it's a real PostgreSQL server. pgpool caches the connection to the PostgreSQL server to reduce the overhead involved in establishing the connection to it. pgpool can also be used with two PostgreSQL servers for fail over purposes. If the first server goes down, pgpool will automatically switch to the secondary server. pgpool is typically started and stopped via system initialization scripts. INVOCATION
pgpool [ options... ] Starts as a daemon in the background (unless -n is given). pgpool [ options... ] stop Shutdown. pgpool [ options... ] reload Reloads the configuration. OPTIONS
-a path --hba-file path Sets the path to the pool_hba.conf configuration file (default: /etc/pgpool2/pgpool_hba.conf). -c --clear-cache Clears the query cache. -d --debug Print lots of debug messages. -f path --config-file path Sets the path to the pgpool.conf configuration file (default: /etc/pgpool2/pgpool.conf). -F path --pcp-config-file path Sets the path to the pcp.conf configuration file (default: /etc/pgpool2/pcp.conf). -h --help Print a help message and exit. -m mode --mode mode Shutdown mode: smart, fast, or immediate. -n --no-daemon Foreground mode. Error messages go to stdout or stderr, which could be piped out to log processors such as logger(1) or rotatelogs(8). To daemonize, explicitly invoke pgpool in background. -v --version Print version and exit. FILES
/etc/pgpool2/pgpool.conf Default configuration file /etc/pgpool2/pool_hba.conf Host Based Access configuration file /etc/pgpool2/pcp.conf PCP commands configuration file SEE ALSO
logger(1), postmaster(1), rotatelogs(8) Additional information can be found in the pgpool README file. 12 Oct 2009 PGPOOL(8)