Can't get RCON to work

Im having troubles setting up my rust server, ive gotten it to run properly so that me and my friends can join the server but not im trying to set up an rcon tool called rust admin but nothing is working

Batch File Below
----------------------------------

echo off
:start

cd steam
steamcmd.exe +runscript ../update_script.txt
steamcmd.exe +runscript ../update_script.txt
cd ..

cd rustds
RustDedicated.exe -batchmode ^
+server.hostname "My Server Name" +server.port 28015 ^
+server.identity "my_server" ^
+server.seed 1234567 +server.worldsize 1000 +server.maxplayers 50 ^
+rcon.port 28016 + rcon.password "bobby" +rcon.web 1 +rcon.ip 127.0.0.1 +query_port 28016^
-logFile "output.txt" -autoupdate
cd ../

goto start
--------------------------------------------

Like i said im using Rust admin, under server, i put 127.0.0.1 for ip cause the server is local, port is 28015 and the rcon is 28016
Ive tried so many different inputs, like ip  0.0.0.0, my ipv4 and actual ip.  ive tried making a new seperate port for the rcon as 28017 but nothing still.
And while looking at console while the server is running i dont even think the rcon is running, ive seen other examples where in their console the server was trying to turn on rcon or it wasnt responding. 
this is my first time and im at my wits end

Does your RCON password have any special characters in it? I see the "bobby" but I dunno if you changed that for this post.

+ rcon.password "bobby"  has a space after the + sign. And you should use the 28017 port.

Double check your start.bat for typos.

Oh, and I noticed this: query_port is query.port.  Change this: "+query_port 28016^" to this "+query.port 28016 ^" Note the space before the ^ (I don't think you need that part at all, actually https://oxidemod.org/threads/full-list-of-server-arguments-parameters.15998/#post-180171)

Thank you Ryan. Im unbelievelbly mad right now. You fixed my issue i had for hours in 5 mins. Typos, its always Typos

Ive done everything you pointed out, made sure there were no special characters, i did quotations to make sure the password didnt contain spaces

i closed that space you saw and i changed the query_port to query.port.  Thank you for looking for little details cause i pulling apart my entire system and firewall to find a single clue

PhoenixBBO

You fixed my issue

So we're good? You got RustAdmin to connect??