I have a following setup:
Cisco891[Gi0] <-> [Fa1/0/4]WS-C3750-48TS[Fa1/0/43] <-> [eth1]IBM_server
IBM_server eth1 has following configuration:
ifconfig eth1 10.10.10.1 netmask 255.255.255.0
Router configuration is following:
Cisco891#sh run int Gi0
Building configuration...
Current configuration : 149 bytes
!
interface GigabitEthernet0
ip address 10.10.10.2 255.255.255.0 secondary
ip address 192.168.1.202 255.255.255.252
duplex auto
speed auto
end
Cisco891#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Cisco891(config)#int Loopback1234
Cisco891(config-if)#ip address 10.10.10.3 255.255.255.255
% 10.10.10.3 overlaps with secondary address on GigabitEthernet0
Cisco891(config-if)#
I need to telnet to 10.10.10.1(
IBM_server) using the secondary address of Gi0(10.10.10.2) as a source IP address. As much as I have understood, it's not possible to specify source IP address in case of telnet. However, it's possible to specify source interface for telnet session. I tried to configure loopback interface for "telnet 10.10.10.1 /source-interface Loopback1234", but this doesn't seem to work either as you can see from my example above

Any ideas? Or is it possible to telnet while using interface secondary IP as a source IP?