Question about ssh login warning: Bad protocol version identification

I set up ssh on my computer according to Tim Haigh's suggestions given here:
http://discussions.apple.com/thread.jspa?threadID=1674968&tstart=0
But when I log in from my iPhone, secure.log shows this:
sshd[534]: Bad protocol version identification 'GET / HTTP/1.1' from 208.54.83.51
Although I do log in successfully, how can I resolve this error?

GET / HTTP/1.1
Looks more like a Web browser handshake, than ssh.

Similar Messages

  • A french question about a login

     

    Et voilà,
    WindowsUserName : TextData;
    WindowsUserName = task.part.OperatingSystem.GetEnv(name='username');
    Hope this helps
    Fabrizio Genesio
    Datasign AG für Informatik
    ch. d'Eysins 53a
    CH-1260 Nyon
    Switzerland
    Tel.: +41 22 361 04 04
    Fax: +41 22 361 01 10
    e-mail: fabrizio.genesiodatasign.ch
    <mailto:fabrizio.genesiodatasign.ch>
    URL: www.datasign.ch <http://www.datasign.ch>
    -----Original Message-----
    From: Olivier Andrieux [SMTP:oandrieuxaxialog.fr]
    Sent: Thursday, 27 April 2000 11:53
    To: Mailing Liste Forte
    Subject: (forte-users) a french question about a login
    Bonjour,
    J'ai une petite question &agrave; vous soumettre:
    Je voudrais r&eacute;aliser une fen&ecirc;tre de login avec Fort&eacute;, mais pour
    cela il me faudrait r&eacute;cup&eacute;rer les informations
    d'identification de chaque utilisateur sur le serveur
    NT. Questionner le serveur en utilisant les m&ecirc;mes noms et mots de passe
    utilisateurs que le serveur.
    Cela est-il possible ?
    Je vous remercie par avance pour vos r&eacute;ponse .
    A bient&ocirc;t
    Olivier.
    Olivier Andrieux
    Axialog Lille
    France

  • Newbie questions about Database replication, "backups", and sql version

    Just created my first Sql Database using the "SQL Database Management Portal". A blast but three questions come to mind:
    1. Is this DB automatically
    "replicated"? (In other words,  is DB "failover" or clustering,  a feature of all newly created Azure databases?) 
    2. Our on-premise model is to make a daily DB backup which is saved to a nightly tape. If needed, we can restore a two-month old database backup under a new name to compare it with the current one. Does Sql Azure support this capability
    or not? Can it be requested?
    3.  Which on-premise version of sql is "Sql Azure" closest to? (2014?)
    TIA,
    edm2
    P.S. My database was created using the "web" edition.

    Hi edm,
    According to your description, you create a SQL Azure database in Azure platform. The replication feature is not supported by Microsoft Azure SQL database. If you want to sync the SQL Azure database and local database, you can use SQL Azure Data Sync service.
    For more information, see:
    http://blogs.technet.com/b/the_cloud_pilot/archive/2011/10/24/your-first-sql-azure-data-sync-step-by-step.aspx
    In addition, if you have Web or Business Edition databases, you must create your own backup strategy. You can use database copy or Import and Export services to create copies of the data and export the file to an Microsoft Azure storage account. Meanwile,
    Windows Azure SQL Database provides a mechanism for automating the process for exporting a database to BACPAC files on a set interval and frequency. For more information, see:
    Schedule an Automated Export:
    http://msdn.microsoft.com/en-us/library/hh335292.aspx#automate
    Windows Azure SQL Database Backup and Restore strategy:
    http://www.mssqltips.com/sqlservertip/3057/windows-azure-sql-database-backup-and-restore-strategy/
    Currently, Azure uses a special version of Microsoft SQL Server as its backend. It provides high availability by storing multiple copies of databases, elastic scale and rapid provisioning, when we check the version of SQL Server, it shows as follows.
    Microsoft SQL Azure (RTM) - 11.0.9216.62
    Regards,
    Sofiya Li
    If you have any feedback on our support, please click
    here.
    Sofiya Li
    TechNet Community Support

  • Question about doing application development against older versions of Access

    I'll be working on a MS Access 2007 application written by someone else, whose no longer here. I've no experience writing MS Access applications, however I've used MS Access several times through the years as a desktop database. Therefore I know it's possible
    to open an older Access database, say Access 2007, with a newer version of Access. You can bring up tables, query definitions, etc. and do normal database things in newer versions of Access against older .mdb's or .accdb's.
    What I don't know is if it is possible to also do development against older versions of Access. Can I have MS Access 2013 on my development PC, but open a MS Access 2007 database with the Access application in it, and do development? Or will Access 2013
    insist that I upgrade the older database file to Access 2013?
    Rod

    One can definitely open and use it with Access 2013 (note - we haven't gotten to 'develop' it yet.....)
    Generally an app written with the 2007 edition is going to be a .accdb file - but it is possible it is the older .mdb file format. 
    In development is your issue; the latest edition has newer features that the older edition can't possibly know about.  Nothing unique about Access on this point.  It just is.  So if you invoke any of those - then you'll lose your backward
    ability as a 2007 user won't be able to open it.
    I definitely have tried to open an app in 07 only to receive a 'not recognized' type error message - and moved that app over to my 13 machine where it opened fine....and was never able to find which feature unique to 13 was the culprit....
    So if you tread cautiously you can be okay - and while I think I know the features that differentiate the products, I still prefer to play it safe and do all development in the edition that is used.

  • Question about SWT Login

    Hi all i'm new to SWT and i was trying to create a login shell to log on to my main shell. My problem is i can't get the shell to read from oracle. The login information is stored in an Oracle database.
    This is my method for capturing login infomation:
    public static String getPass(String UserName, String Password){
    try{
    String login ="Log";
    String nolog = "Invalid";
    dbConn = db.getDBConnection();
    Statement statement = dbConn.createStatement();
    ResultSet rs=null;
    String query = "Select * from administrator where adminName = '"+UserName+"' and      adminPassword = '"+Password+"'";
    rs=statement.executeQuery(query);
    int counter = 0;
    while(rs.next())
    counter++;
    if(counter == 0)
    return nolog;
    else return login;
    catch (Exception e){
    return(e.toString());
    Here is a code snippet from my main method:
    btnLogin.addSelectionListener(new SelectionAdapter() {
    public void widgetSelected (SelectionEvent e) {
    String Username = txtUserName.getText();
    String Password = txtPassword.getText();
    String Check = getPass(Username, Password);
    if(Check.length()<4){    
                             shellMain.open();
         shellLogin.dispose();                    
                        else{
                             JOptionPane.showMessageDialog(null, "Please enter correct username and password");
                             txtUserName.setText("");
                             txtPassword.setText("");
    Basic the problem is with my if statement. If i say Check.length()>4 it always logs in and if i reverse it, it never logs in.
    My database is working fine and is populated. My JDBC code is fine aswell.

    Hey pj,
    you can have as many accounts on your machine as you like and that seem fit to you.
    floba
    PS: Man, I have to type faster as long as V.K. lurks around
    (MN316)
    Message was edited by: floba

  • Two questions about possible limitations in the Trial version

    1) I'm unable to format Date and Time using the Inspector/Table/Format option - is this because I'm using the Trial Version?
    The thing I'm trying to do is lose the day of the week in the default, so instead of "Sunday, August 26, 2007" it would read "August 26, 2007".
    Can I do this in the full registered version?
    2) I'm unable to change the top margin of a document in the trial version. I've gone into File/Page Setup/Paper Size/Manage custom sizes and changed the margins to no avail. It prints out exactly as it did before I made the changes. Is this also a limitation of the trial version that works fine in the full version?

    Hi Walt:
    Thanks for the quick reply.
    Re: the date format, I know I can change it manually by control-click, but I was trying to change the default, so that it always gives me "Month Date, Year", instead of "Day of week, Month Date, Year". My problem with the "Automatically Update on Open" option is that yes, it will give me what I want when I CREATE a new document, but anytime I open an old document to read it, it will change the date from the date it was created to the date it was re-opened.
    Is there ANY way I can insert date and get the format I want each time without having to manually change it?
    As for the top margin, thanks. I see that the only way to change a document's margins is by going into the Inspector and changing them under "Document Margins". I was changing them under File/Page Setup, and drilling down to Printer Margins. Since that didn't seem to change anything ... what are Printer Margins and what does changing them actually do (since I couldn't tell any difference when I changed them)?
    /rb

  • A question about JSF login

    Hi all!
    I am following this link (http://benjmaz.blogspot.com) for handling session in my application.
    I am unable to understand that what attributes and methods would be there in the MemberManager class, object of which we have created in LoginBean.java class, please give me some clue about this.
    Thanks in advance.
    Edited by: 857452 on May 17, 2011 2:22 AM

    How can i do if user close browser without logout? You pretty much can't do anything about that, and shouldn't. There is one thing you could do (but probably shouldn't), and that would be to include some javascript on your page to handle the "onExit" (or something like that - I don't know off the top of my head, but there is a way to trap navigating away from a page, which includes closing the browser) event to invoke whatever URL you want to, to tell it the person is "logging out".
    Other than that, you could rely on session timeouts, and handle the event on your server side which happens when the session expires.

  • Basic Questions about JSF, Login and Session

    Hi,
    I try to implement a login/logout function on my jsf-website. I create one <form> with Login and Pass to enter. My AuthenticBean(sessionbean) checks login and pass. If Login is "ok" the login and pass will set in the authenticBean (min. value of login and pass = 2).
    Now I check protected .jsf files (files who need a login) if in the AuthenticBean the login.equals("") or pass.equals(""). If so, the user is not logged in.
    Is this a safe method or should I choose a better way to have secure login/logout functions. Perhaps its better to create a userSessionBean after a succeful login and check it with HttpServletRequest rq.getSession().getAttribute(userSessionBean)?
    I am confused a little bit and I hope you'll help me:)
    Thnx Alex

    Implement a javax.servlet.Filter and indeed use the attributes of the HttpSession.

  • Question about ssh client

    I wanna launch a gui program on an ssh client, but id doesn't support
    graphic or something.Does anybody know any software that can do this,
    or any solution that I could test my program by ssh .
    Thanks

    use the -X switch.. see man ssh

  • Question about the sensor... just got my 4s yesterday after screwing up my 3 with the laterd version update.  EVery call I have been on has either changed to speaker, called another number or ended the call or activated facetime, which I have turned off.

    Question about the sensor... just got my 4s yesterday after screwing up my 3 with the laterd version update. EVery call I have been on has either changed to speaker, called another number or ended the call or activated facetime, which I have turned off. never had this trouble with my 3...I don't even want to talk to anyone on this phone! Is the sensor bad? That is what the AT&t rep suggested.

    Restore as new... if the problem still continues then there is a hardware issue.
    If it stops after a restore as new, then the issue is with the backup the device is currently setup with.

  • Question about email setting: how  do i change the setting so i need to login to check my email. Currently it automatically come to the inbox without the need to log in. Thanks

    Question about email setting: how  do i change the setting so i need to login to check my email. Currently it automatically come to the inbox without the need to log in.

    You don't. Email comes in either by push or when you invoke the email app. Ther is no password except when you first set up the account. If your iPad is not being used as your personal device and you need to shield emails from other users, then don't use the email app.  Instead, use web mail if available from your provider.

  • Hello , how r u,  can i ask 1 question about xcode, i have mac os x 10.7.5 , n xcode version 4.6.3 i want build apps for ios 7.1 n mac os 1.9 ,, , but my macbook is old late 2008 macbook 4,1,  so can i develop apps for ios7 n 1.9 using xcode 4.6.3, bcz my

    hello , how r u,
    can i ask 1 question about xcode, i have mac os x 10.7.5 , n xcode version 4.6.3 i want build apps for ios 7.1 n mac os 1.9 ,, , but my macbook is old late 2008 macbook 4,1,  so can i develop apps for ios7 n 1.9 using xcode 4.6.3, bcz my machine cant upadte on 1.8 n 10.9,, ihave 2gb ram . core 2 duo pr, plz rely asap,
    thnxs

    Please type complete sentences and words.  This isn't an instant message program.
    https://developer.apple.com/support/ios/ios-dev-center.html

  • Basic questions about login

    I got 2 questions regarding to login,
    1. I'm on a 8i DB, when it is shutdown, I want to login again.
    for "sqlplus internal", it says connect to an idle DB.
    for "sqlplus sys/password", it says
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    SVR4 Error: 2: No such file or director
    is this normal? I'm pretty sure my /etc/system is OK and the shutdowns are clean.
    set shmsys:shminfo_shmmax=805306368
    set shmsys:shminfo_shmmin=200
    set shmsys:shminfo_shmmni=200
    set shmsys:shminfo_shmseg=200
    set semsys:seminfo_semmni=4096
    set semsys:seminfo_semmsl=500
    set semsys:seminfo_semmns=4096
    set semsys:seminfo_semopm=100
    set semsys:seminfo_semvmx=32767
    2. For OS user authentication, I understand if the user is a DBA, I would put him in group "dba", then set remote_login_passwordfile=none.
    My question is: how about a regular user? OS authenticaion is only for DBA?
    I may just got myself confused, please give me a hint. thanks.

    I understand now. The problem was the syntax.
    I used
    sqlplus terry/pass as sysdba
    which should be
    sqlplus "..."
    and the second question is clear as well.
    Thanks,
    Terry

  • Question about Student version and CS6

    Not sure if this is the right place to post this question...
    So I have a question about Student&Teacher versions in CS6 - Will there be Student & Teacher version for CS6 too?
    P.S Sorry if there are some grammar mistakes.
    Hope You understand!
    Thanks!

    Thanks for the reply Bob,
    I was actually referring to this exact page ( CS5.5 Production Premium, Student) http://adobe.ly/H6so7G (non-flash version because links were redirecting) where it doesnt list the offer on the left.
    However, after reading this http://store.adobe.com/store/en_us/popup/offer/cs55_cs6_faq.html and this http://store.adobe.com/store/en_us/popup/offer/cs55_cs6_faqchannel.html I'm assuming it must just be an error.
    It doesnt mention anything about not including student editions and all offer pages I've seen have a link to the education store.

  • Hello am using ios 7.0.4 I have a question about messages that it does not show the time of a particular message after first message that I recive form a paricular person so please in the next version change this and with every message show time and date

    hello am using ios 7.0.4 I have a question about messages that it does not show the time of a particular message after first message that I recive form a paricular person so please in the next version change this and with every message show time and date

    Hi,
    How is everything going? Have you checked this issue from OWA? If so, please let me know the result.
    In adition, please also try to use the following powershell commands to check if the assistant has right permissions:
    Get-MailboxFolderPermission -Identity
    CEO’s email address:\Calendar -User assistant’s email address
    Also check with:
    Get-Mailbox -Identity CEO’s mailbox
    | fl *GrantSendOnBehalfTo
    Please let me know the result.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

Maybe you are looking for

  • Why do my photos appear in other users accounts?

    I have multiple users on my computer (I set up one for each of my 3 kids).  When they open iphoto in their user account, why do all of my photos appear?  My photos are stored under my user account (not in the shared folder). How do I keep my files pr

  • Load Balancing Server reg

    Hi Gurus If i have Installed Foundation services in 4 environments, How HFM will switch to another environments based on Users load ? Do we need to write any kind of scripts or functions? regards Sarilla

  • Restart Fails after Software Update

    For the past few weeks (I cannot tie down when this started), after carrying out any download that requires a restart through Software Update when I click on the Restart Button the menu bar disappears but the machine will not restart. If I leave it f

  • Wagetypes Assignments Deleted and how to revoke them

    Dear Experts, In my support project,  issue is users observed in prd client.  IT0008 records for some WTs has been nullified.  i checked config steps and found WTs are there in V_512w_d table and being missed the Wage type Assignments in V_t512z, V_5

  • Make an input form in pdk-struts

    Hi I have an application that uses ADF BC4J as model and jsp as view. One of the pages has an master/detail input from. I have installed struts-pdk and I can build and deploy simple text pages, which are visible as portlets in the portal. Linking bet