Hi Nicole,
Sorry for a long post.
I have implemented bridging at my company because of our legacy HP 3000 systems, the servers are at one location (hub) while the terminals are at the remote location. If memory serves me, they don't have a default gateway capability (from the remote side) so we have to bridge between the sites.
I set up the following on the remote site:
bridge 1 protocol ieee
interface Ethernet0/0
no ip address
bridge-group 1
From the hub site:
bridge 1 protocol ieee
interface Serial2/1
no ip address
bridge-group 1
You can setup IP addresses on both sides of the link if you want but in that case, you will be routing IP but bridging all other traffic. This is probably not what you want, I'm guessing.
You have other options, which I would recommend you research a bit, they are CRB and IRB. I am also using IRB for another site. It will allow you to route IP as well as bridge it. If you implemented IRB you would be using a virtual interface called the BVI to which you assign an IP address, you must remove the IP address from the router(s)physical interface.
A sample config would be as such:
At hub site:
bridge irb
bridge 1 protocol ieee
bridge 1 route ip
interface Serial2/1 <--link to remote site
no ip address
bridge-group 1
interface BVI1
ip address 10.10.2.X 255.255.255.0
You would probably setup the remote site in a similar fashion. Bear in mind the BVI1 ip address is now your default gateway address for that site.
Not sure if any of this will help, hopefully it will point you in the right direction or prompt others to comment.
take care and good luck!
Mark